├── LICENSE ├── docs ├── FAQ │ ├── index.en.md │ └── index.md ├── assets │ ├── 20230505095351934.jpg │ ├── 20230505095357021.jpg │ ├── 20230505095457702.jpg │ ├── 20230505101521031.jpg │ ├── 20230505101523609.jpg │ ├── 20230505102333065.jpg │ ├── 20230505102335390.jpg │ ├── 20230505102753101.jpg │ ├── 20230505103524540.jpg │ ├── 20230505103534856.jpg │ ├── 20230505103540818.jpg │ ├── 20230505103544263.jpg │ ├── 20230505150013592.jpg │ ├── 20230906153119436.jpg │ ├── 20231007232729208.jpg │ ├── 20231007232747398.jpg │ ├── 20231007232750279.jpg │ ├── 20231007232807776.jpg │ ├── 20231007232910.jpg │ ├── 20231007232932387.jpg │ ├── 20231007232941235.jpg │ ├── 20231007233008821.jpg │ ├── 20231007234233.jpg │ ├── 20231008000436.jpg │ ├── 20231008005316.jpg │ ├── 20231008005635.jpg │ ├── 23231007232958.jpg │ ├── icon.gif │ └── novice │ │ ├── 20240720030137.jpg │ │ ├── 20240720030337.jpg │ │ ├── 20240720105653.jpg │ │ └── 20240720110348.jpg ├── config │ ├── index.en.md │ └── index.md ├── home │ ├── index.en.md │ └── index.md ├── index.en.md ├── index.md ├── introduction │ ├── index.en.md │ └── index.md ├── mystery │ ├── index.en.md │ └── index.md ├── novice │ ├── index.en.md │ └── index.md ├── settings │ ├── dns │ │ ├── index.en.md │ │ └── index.md │ ├── index.en.md │ ├── index.md │ ├── log │ │ ├── index.en.md │ │ └── index.md │ ├── ntp │ │ ├── index.en.md │ │ └── index.md │ ├── outbound-provider │ │ ├── index.en.md │ │ └── index.md │ ├── outbound │ │ ├── index.en.md │ │ └── index.md │ └── setting │ │ ├── index.en.md │ │ └── index.md ├── stylesheets │ └── extra.css └── termux │ ├── index.en.md │ └── index.md ├── mkdocs.yml └── overrides └── partials └── comments.html /LICENSE: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 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 Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published 637 | by the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | -------------------------------------------------------------------------------- /docs/FAQ/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # common problem 5 | ## This machine has internet, but the hotspot doesn’t? 6 | 7 |
8 | This machine has internet but the hotspot doesn’t? 9 |

Please check whether the hotspot mode is turned on. If there is no Internet connection, please try to turn off or turn on the compatibility mode. The latest version of Mystery generally does not need to turn on the compatibility mode.

10 |

If the hotspot cannot access the panel, please enable compatibility mode.

11 |

Author's words:“Some people’s hotspots can be turned on again if they don’t have internet access (I don’t know why)”

12 |
13 | 14 | ## How to enable mysterious TProxy mode? 15 | Find the tun inbound (it is recommended to search for `tag: tun`), as follows: 16 | 17 | ```yaml 18 | - enabled: true 19 | tag: tun 20 | type: tun 21 | interface_name: tun1 22 | inet4_address: 172.19.0.0/16 23 | inet6_address: 2001:10::/28 24 | strict_route: true 25 | auto_route: true 26 | stack: mixed 27 | sniff: true 28 | sniff_override_destination: false 29 | sniff_override_rules: 30 | - type: logical 31 | mode: and 32 | rules: 33 | - domain_keyword: . 34 | - rule_set: 35 | - 跳过覆写 36 | - 推送服务-IP 37 | - 推送服务-域名 38 | invert: true 39 | ``` 40 | 41 | Change **true** after **enabled** to **false**, as follows: 42 | 43 | ```yaml 44 | - enabled: false 45 | tag: tun 46 | type: tun 47 | interface_name: tun1 48 | inet4_address: 172.19.0.0/16 49 | inet6_address: 2001:10::/28 50 | strict_route: true 51 | auto_route: true 52 | stack: mixed 53 | sniff: true 54 | sniff_override_destination: false 55 | sniff_override_rules: 56 | - type: logical 57 | mode: and 58 | rules: 59 | - domain_keyword: . 60 | - rule_set: 61 | - 跳过覆写 62 | - 推送服务-IP 63 | - 推送服务-域名 64 | invert: true 65 | ``` 66 | 67 | Then find the tproxy inbound under tun inbound, as follows: 68 | 69 | ```yaml 70 | inbounds: 71 | - enabled: false 72 | tag: tproxy 73 | type: tproxy 74 | listen: '::' 75 | listen_port: 10086 76 | sniff: true 77 | sniff_override_destination: false 78 | sniff_override_rules: 79 | - type: logical 80 | mode: and 81 | rules: 82 | - domain_keyword: . 83 | - rule_set: 84 | - 跳过覆写 85 | - 推送服务-IP 86 | - 推送服务-域名 87 | invert: true 88 | ``` 89 | 90 | Change **false** after **enabled** to **true**, as shown below: 91 | 92 | ```yaml 93 | inbounds: 94 | - enabled: true 95 | tag: tproxy 96 | type: tproxy 97 | listen: '::' 98 | listen_port: 10086 99 | sniff: true 100 | sniff_override_destination: false 101 | sniff_override_rules: 102 | - type: logical 103 | mode: and 104 | rules: 105 | - domain_keyword: . 106 | - rule_set: 107 | - 跳过覆写 108 | - 推送服务-IP 109 | - 推送服务-域名 110 | invert: true 111 | ``` 112 | 113 | Save after modification, open the Mystery panel => Settings => Mystery, click **Reload Core Configuration**, then return to the homepage and click **Restart Core**. 114 | 115 | As expected, it has worked. 116 | 117 | If you want to change it back, modify the value after enabled, change **false** to **true**, change **true** to **false**, and then reload + restart the core. 118 | 119 | ## How to release WiFi? 120 | ### MacroDroid 121 | Download [MacroDroid](https://t.me/xireikisub/66) and [MacroDroid Backup](https://t.me/xireikisub/68) 122 | 123 | After installing [MacroDroid](https://t.me/xireikisub/66), import [backup file](https://t.me/xireikisub/68) to [MacroDroid](https://t.me/ xireikisub/66) 124 | 125 | ## How to release the application? 126 | Modify black or white in **packages_list**, which are respectively the blacklist (applications in the release list) and the whitelist (only applications in the proxy list). The default is **blacklist**. 127 | 128 | If you have time and trouble, you can use my [TPanel](https://tpanel.xireiki.com), click on the animation to enter the settings-list and enable the corresponding application. 129 | 130 | **packages_list** Original content 131 | 132 | ```yaml 133 | packages_list: 134 | mode: black 135 | black: [] 136 | white: [] 137 | notice: |- 138 | mode 有两个值,black or white 139 | 两个数组分别对应黑名单和白名单,目前名单里只允许填写包名 140 | 上个版本的 list 会根据 mode 自动转换成 black 和 white 两个数组里的值 141 | ``` 142 | 143 | ### blacklist 144 | **mode** defaults to the blacklist and does not need to be modified. If you want to modify it, refer to the whitelist. 145 | 146 | Add package names in black, one per line. 147 | 148 | For example, WeChat is **com.tencent.mm**, Genshin Impact is **com.miHoYo.Yuanshen** (did you find it? Case sensitive), which are the only names of mobile applications. In Xiaomi mobile phones, long press the desktop application icon => Application details => ⓘ in the upper right corner, you can see the package name, click to copy. 149 | 150 | As follows. 151 | 152 | ```yaml 153 | black: 154 | - com.tencent.mm 155 | - com.miHoYo.Yuanshen 156 | ``` 157 | 158 | ### whitelist 159 | Modify **mode** to white. Like below 160 | 161 | ```yaml 162 | packages_list: 163 | mode: white 164 | black: [] 165 | white: [] 166 | ``` 167 | 168 | Add the package names in white, one per line, as shown below. 169 | 170 | ```yaml 171 | white: 172 | - com.tencent.mm 173 | - com.miHoYo.Yuanshen 174 | ``` 175 | 176 | ## How to enable/disable fakeip? 177 | Open the mysterious panel, enter **操控核心** -> **Lower Left Corner Gear** at startup, and modify the mode at **切换路由模式**. 178 | 179 | ## Geo database error? 180 | If you report an error after **starting**/**restarting the core** and there is the word **geo** in the error, it is most likely a geo database download error. Please try to update the geo database. Specific solution: Settings - Module Configuration - Automatically update Geo database, just turn it off and on again 181 | 182 | If the issue is not resolved, please check the geo database format and links 183 | 184 | ## What should I do if I encounter "parse outbound[n]: missing tags and uses"? 185 | 186 | **Puer 是只喵 喵~**(Module Author): "Damn it, you use manual selection/automatic selection without nesting other outbound or citing outbound providers." 187 | 188 | Please nest outbound, outbound providers within an outbound that does not nest any outbound, outbound providers, it cannot be empty! 189 | 190 | ## Keyword 1.8.0 appears in the error report 191 | Error reported: 192 | ``` 193 | cache_file and related fields in Clash API is deprecated in sing-box 1.8.0, use experimental.cache_file instead. 194 | ``` 195 | If your error is this, please follow the [Migration Guide](https://sing-box.sagernet.org/zh/migration) to modify the configuration or reinstall sing-box. 196 | 197 | ## The 神秘 about NoTermux version 198 | This version does not require Termux. Please ignore the environment configuration steps. You need to restart when installing from the original mysterious overlay. Everything else is the same as the original version. 199 | 200 | To download, please go to [My Channel](https://t.me/xiayinlily), updates are not guaranteed. 201 | 202 | **This is a modified version, not the original version** 203 | 204 | **This is a modified version, not the original version** 205 | 206 | **This is a modified version, not the original version** 207 | 208 | ## After force restarting the phone, it mysteriously fails to start? Startup failed. Is there Valid JSON keyword in node.log? 209 | The reason may be that the **appLables.json** file is damaged after a forced restart of the phone. Go to **/data/adb/sfm/src** to delete this file and re-flash the module to solve the problem. 210 | 211 | ## Regarding "出站提供者信息提交失败,原因是:provider 不合法,原因是:type 不合法"? 212 | The reason for this problem is that the outbound provider type was updated in one update, but your panel cache was not updated. 213 | 214 | The solution is to clear the panel cache, such as clearing the data of the "神秘" application, clearing the cache of the browser, etc. 215 | -------------------------------------------------------------------------------- /docs/FAQ/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 常见问题 5 | ## 本机有网,热点没网? 6 | 7 |
8 | 本机有网,热点没网? 9 |

请检查是否开启热点模式,如果开了还没网,请尝试关闭或者开启兼容模式,最新版神秘一般不需要开启兼容模式。

10 |

如果热点不能访问面板,请开启兼容模式。

11 |

喵佬原话:“某些人热点没网就再开起来吧(我也不知道为啥)”

12 |
13 | 14 | ## 神秘 TProxy 模式怎么开? 15 | 找到 tun 入站(建议搜索 `tag: tun`),如下: 16 | 17 | ```yaml 18 | - enabled: true 19 | tag: tun 20 | type: tun 21 | interface_name: tun1 22 | inet4_address: 172.19.0.0/16 23 | inet6_address: 2001:10::/28 24 | strict_route: true 25 | auto_route: true 26 | stack: mixed 27 | sniff: true 28 | sniff_override_destination: false 29 | sniff_override_rules: 30 | - type: logical 31 | mode: and 32 | rules: 33 | - domain_keyword: . 34 | - rule_set: 35 | - 跳过覆写 36 | - 推送服务-IP 37 | - 推送服务-域名 38 | invert: true 39 | ``` 40 | 41 | 把 **enabled** 后的 **true** 改为 **false**,如下: 42 | 43 | ```yaml 44 | - enabled: false 45 | tag: tun 46 | type: tun 47 | interface_name: tun1 48 | inet4_address: 172.19.0.0/16 49 | inet6_address: 2001:10::/28 50 | strict_route: true 51 | auto_route: true 52 | stack: mixed 53 | sniff: true 54 | sniff_override_destination: false 55 | sniff_override_rules: 56 | - type: logical 57 | mode: and 58 | rules: 59 | - domain_keyword: . 60 | - rule_set: 61 | - 跳过覆写 62 | - 推送服务-IP 63 | - 推送服务-域名 64 | invert: true 65 | ``` 66 | 67 | 接着找到 tun 入站下的 tproxy 入站,如下: 68 | 69 | ```yaml 70 | inbounds: 71 | - enabled: false 72 | tag: tproxy 73 | type: tproxy 74 | listen: '::' 75 | listen_port: 10086 76 | sniff: true 77 | sniff_override_destination: false 78 | sniff_override_rules: 79 | - type: logical 80 | mode: and 81 | rules: 82 | - domain_keyword: . 83 | - rule_set: 84 | - 跳过覆写 85 | - 推送服务-IP 86 | - 推送服务-域名 87 | invert: true 88 | ``` 89 | 90 | 把 **enabled** 后的 **false** 改为 **true**,如下所示: 91 | 92 | ```yaml 93 | inbounds: 94 | - enabled: true 95 | tag: tproxy 96 | type: tproxy 97 | listen: '::' 98 | listen_port: 10086 99 | sniff: true 100 | sniff_override_destination: false 101 | sniff_override_rules: 102 | - type: logical 103 | mode: and 104 | rules: 105 | - domain_keyword: . 106 | - rule_set: 107 | - 跳过覆写 108 | - 推送服务-IP 109 | - 推送服务-域名 110 | invert: true 111 | ``` 112 | 113 | 修改完后保存,打开神秘面板=>设置=>神秘,点击**重载核心配置**,接着返回主页点击**重启核心**。 114 | 115 | 不出所料,已经成功了。 116 | 117 | 如果想改回去,修改 enabled 后的值,**false** 改 **true**,**true** 改 **false**,再重载+重启核心即可。 118 | 119 | ## WiFi 放行怎么做? 120 | ### MacroDroid 121 | 下载 [MacroDroid](https://t.me/xireikisub/66) 和 [MacroDroid 备份](https://t.me/xireikisub/68) 122 | 123 | 安装 [MacroDroid](https://t.me/xireikisub/66) 后,导入 [备份文件](https://t.me/xireikisub/68) 到 [MacroDroid](https://t.me/xireikisub/66) 124 | 125 | ## 怎么放行应用? 126 | 修改 **packages_list** 里的 black 或 white,它们分别是黑名单(放行列表内的应用)和白名单(只代理列表内的应用)。默认是**黑名单**。 127 | 128 | 如果你闲麻烦,可以使用我的[半成品面板](https://tpanel.netlify.app),点击动图进入设置-名单里给对应的应用启用即可。 129 | 130 | **packages_list** 原始内容 131 | 132 | ```yaml 133 | packages_list: 134 | mode: black 135 | black: [] 136 | white: [] 137 | notice: |- 138 | mode 有两个值,black or white 139 | 两个数组分别对应黑名单和白名单,目前名单里只允许填写包名 140 | 上个版本的 list 会根据 mode 自动转换成 black 和 white 两个数组里的值 141 | ``` 142 | 143 | ### 黑名单 144 | **mode** 默认为黑名单,无须修改,如果要修改,参考白名单。 145 | 146 | 在 black 中添加包名,一行一个。 147 | 148 | 例如微信是 **com.tencent.mm**,原神是 **com.miHoYo.Yuanshen**(发现了吗?大小写敏感),这是手机应用的唯一名称。在小米手机中,长按桌面应用图标 => 应用详情 => 右上角ⓘ,就可以看见包名,点击复制即可。 149 | 150 | 如下所示。 151 | 152 | 153 | ```yaml 154 | black: 155 | - com.tencent.mm 156 | - com.miHoYo.Yuanshen 157 | ``` 158 | 159 | ### 白名单 160 | 修改 **mode** 为 white。像下面这样 161 | 162 | ```yaml 163 | packages_list: 164 | mode: white 165 | black: [] 166 | white: [] 167 | ``` 168 | 169 | 在 white 中添加包名,一行一个,如下所示。 170 | 171 | ```yaml 172 | white: 173 | - com.tencent.mm 174 | - com.miHoYo.Yuanshen 175 | ``` 176 | 177 | ## 怎么开启/关闭 fakeip? 178 | 打开神秘面板,在启动时进入**操控核心** -> **左下角齿轮**,在**切换路由模式**处修改模式即可。 179 | 180 | ## Geo 数据库报错? 181 | 如果你在 **开唱**/**重启核心**之后报错了,报错中有 **geo** 字眼,很有可能是 geo 数据库下载错误,请尝试更新 geo 数据库。具体方案:设置 - 模块配置 - 自动更新 Geo 数据库,关了再开即可 182 | 183 | 如问题未得到解决,请检查 geo 数据库格式和链接 184 | 185 | ## 遇到 parse outbound[n]: missing tags and uses 怎么办? 186 | 187 | **Puer 是只喵 喵**:“你该死,一个 手动选择/自动选择 又不嵌套其他出站又不引用出站提供者,你拿头用” 188 | 189 | 请在没有嵌套任何出站、出站提供者的出站内嵌套出站、出站提供者,它不能为空! 190 | 191 | ## 关于报错中出现 1.8.0 192 | 报错: 193 | ``` 194 | cache_file and related fields in Clash API is deprecated in sing-box 1.8.0, use experimental.cache_file instead. 195 | ``` 196 | 如果你的报错是这个,请遵循[迁移指南](https://sing-box.sagernet.org/zh/migration)修改配置或者重新安装神秘。 197 | 198 | ## 关于 NoTermux 版本的神秘 199 | 此版本不需要 Termux,请忽略环境配置步骤,从原版神秘覆盖安装时需要重启,其他与原版相同。 200 | 201 | 下载请前往[我的频道](https://t.me/xiayinlily),不保证更新。 202 | 203 | **这是修改版,不是原版** 204 | 205 | **这是修改版,不是原版** 206 | 207 | **这是修改版,不是原版** 208 | 209 | ## 强制重启手机后,神秘无法启动?启动失败 node.log 里有 Valid JSON 关键字? 210 | 原因可能是强制重启手机后导致 **appLables.json** 文件损坏,前往 **/data/adb/sfm/src** 删除这个文件后重新刷模块即可解决。 211 | 212 | ## 关于“出站提供者信息提交失败,原因是:provider 不合法,原因是:type 不合法”? 213 | 导致该问题的原因是出站提供者类型在某次更新中更新了,单但你的面板缓存未更新。 214 | 215 | 解决方法是清除面板缓存,如清除“神秘”应用的数据、清除浏览器的缓存等。 216 | -------------------------------------------------------------------------------- /docs/assets/20230505095351934.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505095351934.jpg -------------------------------------------------------------------------------- /docs/assets/20230505095357021.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505095357021.jpg -------------------------------------------------------------------------------- /docs/assets/20230505095457702.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505095457702.jpg -------------------------------------------------------------------------------- /docs/assets/20230505101521031.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505101521031.jpg -------------------------------------------------------------------------------- /docs/assets/20230505101523609.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505101523609.jpg -------------------------------------------------------------------------------- /docs/assets/20230505102333065.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505102333065.jpg -------------------------------------------------------------------------------- /docs/assets/20230505102335390.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505102335390.jpg -------------------------------------------------------------------------------- /docs/assets/20230505102753101.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505102753101.jpg -------------------------------------------------------------------------------- /docs/assets/20230505103524540.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505103524540.jpg -------------------------------------------------------------------------------- /docs/assets/20230505103534856.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505103534856.jpg -------------------------------------------------------------------------------- /docs/assets/20230505103540818.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505103540818.jpg -------------------------------------------------------------------------------- /docs/assets/20230505103544263.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505103544263.jpg -------------------------------------------------------------------------------- /docs/assets/20230505150013592.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230505150013592.jpg -------------------------------------------------------------------------------- /docs/assets/20230906153119436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20230906153119436.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232729208.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232729208.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232747398.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232747398.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232750279.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232750279.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232807776.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232807776.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232910.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232910.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232932387.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232932387.jpg -------------------------------------------------------------------------------- /docs/assets/20231007232941235.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007232941235.jpg -------------------------------------------------------------------------------- /docs/assets/20231007233008821.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007233008821.jpg -------------------------------------------------------------------------------- /docs/assets/20231007234233.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231007234233.jpg -------------------------------------------------------------------------------- /docs/assets/20231008000436.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231008000436.jpg -------------------------------------------------------------------------------- /docs/assets/20231008005316.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231008005316.jpg -------------------------------------------------------------------------------- /docs/assets/20231008005635.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/20231008005635.jpg -------------------------------------------------------------------------------- /docs/assets/23231007232958.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/23231007232958.jpg -------------------------------------------------------------------------------- /docs/assets/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/icon.gif -------------------------------------------------------------------------------- /docs/assets/novice/20240720030137.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/novice/20240720030137.jpg -------------------------------------------------------------------------------- /docs/assets/novice/20240720030337.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/novice/20240720030337.jpg -------------------------------------------------------------------------------- /docs/assets/novice/20240720105653.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/novice/20240720105653.jpg -------------------------------------------------------------------------------- /docs/assets/novice/20240720110348.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jasmoli/tutor/93d3856d428a27ef7b6f0034c98c32aa7441d985/docs/assets/novice/20240720110348.jpg -------------------------------------------------------------------------------- /docs/config/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Modify configuration file 5 | The configuration file is in the **/data/adb/sfm/src/** (Android) or the **src** folder of the directory where the module is placed on your computer. 6 | 7 | After modifying the configuration, click **Restart Core**, or **Close the core** first and then modify it, or after modification, go to **Settings** -> **Module Settings** and click **Reload Core Configuration**; After modification, click **Close Core** and the original configuration will overwrite the changed configuration** causing the changes to be invalid** 8 | 9 | For detailed modifications, please see [Official Document](https://sing-box.sagernet.org/zh/). 10 | 11 | The format used by the official document configuration is JSON, which is a common data format, while the configuration of the mysterious module uses YAML as the configuration language. 12 | 13 | YAML is a superset of JSON and is very different except for the single-line syntax. 14 | 15 | Compared with JSON, YAML does not need to use double quotes for strings. For example, `"text": "Hello, this is a piece of text"` should look like this in YAML: `text: Hello, this is A piece of text` (all colons are English colons). 16 | 17 | Because it is unnecessary, `text: "Hello, this is a piece of text"` is also legal. 18 | 19 | Another example, in JSON you can write like this 20 | ```json 21 | { 22 | "name": "喵喵", 23 | "age": 25, 24 | "sex": "男", 25 | "married": true, 26 | "phone": [ 27 | "1xxxxxxxxxx", 28 | "1xxxxxxxxxx" 29 | ] 30 | } 31 | ``` 32 | 33 | But in YAML, you should write it like this (one way of writing, the other is not recommended, easy to confuse) 34 | ```yaml 35 | name: 喵喵 36 | age: 25 37 | sex: 男 38 | married: true 39 | phone: 40 | - 1xxxxxxxxxx 41 | - 1xxxxxxxxxx 42 | ``` -------------------------------------------------------------------------------- /docs/config/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 修改配置文件 5 | 配置文件在 **/data/adb/sfm/src/**(安卓)或者你电脑上放模块的目录的**src**文件夹中。 6 | 7 | 修改配置后点击**重启核心**,或者先**关闭核心**再修改或者修改完后前往**设置** -> **模块设置**,点击**重载核心配置**;修改完后点击**关闭核心**会发生原配置覆盖更改后的配置**导致更改无效** 8 | 9 | 详细修改可看[官方文档](https://sing-box.sagernet.org/zh/),或者等我更新。 10 | 11 | 官方文档配置使用的格式是 JSON,是一种常见的数据格式,而神秘模块的配置使用 YAML 作为配置语言。 12 | 13 | YAML 是 JSON 的超集,除了单行语法外,很不一样。 14 | 15 | 与 JSON 相比,YAML 对于字符串可以不需要使用双引号包含起来,比如 `"text": "你好,这是一段文本"` 在 YAML 中应该是这样的:`text: 你好,这是一段文本`(所有的冒号都是英文冒号)。 16 | 17 | 因为是可以不需要,所以 `text: "你好,这是一段文本"` 也是合法的。 18 | 19 | 又如,在 JSON 中你可以这么写 20 | ```json 21 | { 22 | "name": "喵喵", 23 | "age": 25, 24 | "sex": "男", 25 | "married": true, 26 | "phone": [ 27 | "1xxxxxxxxxx", 28 | "1xxxxxxxxxx" 29 | ] 30 | } 31 | ``` 32 | 33 | 但在 YAML 中,你应该这么写(写法之一,其他不推荐,易混淆) 34 | ```yaml 35 | name: 喵喵 36 | age: 25 37 | sex: 男 38 | married: true 39 | phone: 40 | - 1xxxxxxxxxx 41 | - 1xxxxxxxxxx 42 | ``` 43 | -------------------------------------------------------------------------------- /docs/home/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ## 神秘 panel homepage 5 | ![](../assets/20231007232729208.jpg) 6 | 7 | Detailed explanation of options: 8 | 9 | | Option | Explain | 10 | | :---- | :---- | 11 | | 启动核心 | Start sing-box core (enable proxy) | 12 | | 关闭核心 | Shut down sing-box core (turn off proxy) | 13 | | 重启核心 | Restart sing-box core (restart agent) | 14 | | 操作核心 | Contains **Outbound Settings**, **Outbound Provider**, **Connection Status**, **Clash Mode Settings** | 15 | | 设置 | Settings options for modifying outbound, DNS, outbound provider, etc. settings | 16 | | 拉取 | Pull the corresponding outbound provider (pull the subscription link to update the node) | 17 | | 全部拉取 | Pull all outbound providers | 18 | -------------------------------------------------------------------------------- /docs/home/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ## 神秘面板主页 5 | ![](../assets/20231007232729208.jpg) 6 | 7 | 选项详解: 8 | 9 | | 选项 | 解释 | 10 | | :---- | :---- | 11 | | 启动核心 | 启动 sing-box 核心(开启代理) | 12 | | 关闭核心 | 关闭 sing-box 核心(关闭代理) | 13 | | 重启核心 | 重启 sing-box 核心(重启代理) | 14 | | 操作核心 | 包含**出站设置**、**出站提供者**、**连接情况**、**Clash 模式设置** | 15 | | 设置 | 设置选项,用于修改出站、DNS、出站提供者等设置 | 16 | | 拉取 | 拉取对应的出站提供者(拉取订阅链接以更新节点) | 17 | | 全部拉取 | 拉取所有出站提供者 | 18 | -------------------------------------------------------------------------------- /docs/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Home 5 | 6 | ## Instructions for reading 7 | - All code blocks in this tutorial begin with $ or #, which are commands, and those without are command execution results or codes. 8 | - Commands starting with # are executed as root and need to be executed after executing su to switch root identity. 9 | - You are welcome to modify this tutorial. For modifications, you can go to [GitHub](https://github.com/xireiki/tutorial-神秘) to submit issues or Pull requests. 10 | - Do not **share/mention the 神秘 module/this tutorial** in China, this tutorial can be found by searching Google for "神秘教程" 11 | - Before speaking in the group and asking questions, **check this tutorial** to see if it is stated. If it is stated, the speaker will be **banned** 12 | - If you jump to this tutorial from a domestic platform, please **report** him! Do not mention this tutorial in the country! 13 | 14 | ## Start 15 | 1. Please click the menu button in the upper left corner to start reading. 16 | 2. Select the table of contents button at the back of the page to view the table of contents of the current page. 17 | 18 | ## Translate to your language 19 | Go to [GitHub](https://github.com/jasmoli/tutor) to submit Pull requests 20 | -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 主页 5 | 6 | ## 阅读须知 7 | - 本教程所有代码块中以 $ 或 # 开头的是命令,没有的是命令执行结果或者代码 8 | - 以 # 开头的命令是以 root 身份执行的,需要在执行 su 切换 root 身份后执行 9 | - 本教程欢迎你来修改,修改可以前往[GitHub](https://github.com/xireiki/tutorial-mystery)提交 issues 或者 Pull requests 10 | - 不要在国内**分享/提及神秘模块/本教程**,本教程可使用谷歌搜索“神秘教程”找到 11 | - 群内发言询问前**先查看本教程**是否写明,已写明发言会**被禁言** 12 | - 如果你从国内平台跳转到的本教程,请**举报**他!不要在国内提及本教程! 13 | 14 | ## 开始 15 | 1. 请点击左上角菜单按钮开始阅读。 16 | 2. 已选择页面后方的目录按钮可查看当前页面目录。 17 | 18 | ## 翻译为你的语言 19 | 前往[GitHub](https://github.com/jasmoli/tutor)提交 Pull requests 20 | -------------------------------------------------------------------------------- /docs/introduction/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Introduction 5 | 6 | ## sing-box introduction 7 | - As concisely introduced under [GitHub](https://github.com/SagerNet/sing-box), [sing-box](https://github.com/SagerNet/sing-box) is an open source A universal agent software with good multi-platform compatibility and excellent performance. 8 | - Since the [sing-box](https://github.com/SagerNet/sing-box) kernel itself does not have a provider, it is very unfriendly to airport users when used alone. At the same time, the provider branch and startup module were derived. The external provider is the mysterious module that will be introduced below. In addition, there is also [box4magisk](https://github.com/CHIZI-0618/box4magisk) produced by [𝐄𝟓 𝟖𝟔 𝟗𝟓](https://t.me/e58695), this startup module can use the [provider](https://github.com/PuerNya/sing- box/tree/building) branch. 9 | - This tutorial uses the Android [sing-box](https://github.com/SagerNet/sing-box) startup module mysterious module produced by [Puer是只喵 喵~](https://github.com/PuerNya) As a basis, we introduce the basic functions and usage of [sing-box](https://github.com/SagerNet/sing-box). 10 | - [sing-box official document](https://sing-box.sagernet.org/zh/) 11 | 12 | ## Mysterious introduction 13 | - The mystery module (hereinafter referred to as the mystery) is the sing-box Magisk module produced by [Puer是只喵 喵~](https://github.com/PuerNya), which is used for external providers (providers, airport subscriptions) And start the sing-box kernel 14 | - The mysterious publishing channel is the Telegram topic group [原始人,起洞!](https://t.me/+1-1lPvQxklVlZjA1)'s "啊?" topic (during special times, it has been modified into a private group chat) 15 | - Please watch the tutorial carefully and do not ask questions in the group that will make you look weak. -------------------------------------------------------------------------------- /docs/introduction/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 介绍 5 | 6 | ## sing-box 介绍 7 | - 正如 [GitHub](https://github.com/SagerNet/sing-box) 下简明的介绍一致,[sing-box](https://github.com/SagerNet/sing-box) 是一款开源的通用代理软件,多平台兼容性好,性能优异。 8 | - 由于 [sing-box](https://github.com/SagerNet/sing-box) 内核本身并无 provider,单独使用时对于机场用户十分不友好,与此同时衍生出了 provider 分支,以及启动模块的外置 provider,也就是下文将要介绍到的神秘模块,除此之外还有 [𝐄𝟓 𝟖𝟔 𝟗𝟓](https://t.me/e58695) 制作的 [box4magisk](https://github.com/CHIZI-0618/box4magisk),该启动模块可以使用 [sing-box](https://github.com/SagerNet/sing-box) 的 [provider](https://github.com/PuerNya/sing-box/tree/building) 分支。 9 | - 本教程以 [Puer 是只喵 喵~](https://github.com/PuerNya) 制作的 Android [sing-box](https://github.com/SagerNet/sing-box) 启动模块神秘模块为基础,介绍 [sing-box](https://github.com/SagerNet/sing-box) 的基础功能及使用方法。 10 | - [sing-box 官方文档](https://sing-box.sagernet.org/zh/) 11 | 12 | ## 神秘介绍 13 | - 神秘模块(下文所称的神秘)是 [Puer 是只喵 喵~](https://github.com/PuerNya) 制作的 sing-box Magisk 模块,用于外置 provider(提供者,机场订阅) 并启动 sing-box 内核 14 | - 神秘发布渠道为 Telegram 话题组 [原始人,启洞!](https://t.me/+1-1lPvQxklVlZjA1) 下的“啊?”话题(特殊时期,已修改为私人群聊) 15 | - 请仔细观看教程,不要在群里提出一些会是你看起来很弱智的问题。 16 | -------------------------------------------------------------------------------- /docs/mystery/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ## Install the 神秘 module (Android) 5 | Go to [原始人,起洞!](https://t.me/+1-1lPvQxklVlZjA1)'s "啊?" topic to download the latest version of the module (**pay attention to the group file**). The Android version file name contains `android`, choose to save to download 6 | 7 | Tip: If you are a native English speaker, you can ask for help on the "English" topic. 8 | 9 | ![](../assets/20230505095351934.jpg) 10 | 11 | ![保存到下载](../assets/20230505095357021.jpg) 12 | 13 | Open Magisk, select `Install from local` at the top of the module page, wait for the flashing to complete and then restart 14 | 15 | ![从本地安卓](../assets/20230505095457702.jpg) 16 | 17 | ![](../assets/20230505103524540.jpg) 18 | 19 | ![](../assets/20230505103534856.jpg) 20 | 21 | ![](../assets/20230505103540818.jpg) 22 | 23 | ![](../assets/20230505103544263.jpg) 24 | 25 | ## Install the 神秘 module (Not Android) 26 | Please check the README.md in the software package. -------------------------------------------------------------------------------- /docs/mystery/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ## 安装神秘模块(安卓) 5 | 前往[原始人,启洞!](https://t.me/+1-1lPvQxklVlZjA1)的“啊?”话题下载最新版模块(**注意看群文件**)。安卓版文件名带有 `android`,选择保存到下载 6 | 7 | ![](../assets/20230505095351934.jpg) 8 | 9 | ![保存到下载](../assets/20230505095357021.jpg) 10 | 11 | 打开 Magisk,在模块页面上方选择`从本地安装`,等待刷入完成后重启 12 | 13 | ![从本地安卓](../assets/20230505095457702.jpg) 14 | 15 | ![](../assets/20230505103524540.jpg) 16 | 17 | ![](../assets/20230505103534856.jpg) 18 | 19 | ![](../assets/20230505103540818.jpg) 20 | 21 | ![](../assets/20230505103544263.jpg) 22 | 23 | ## 安装神秘模块(不是安卓) 24 | 请查看软件压缩包内的 README.md -------------------------------------------------------------------------------- /docs/novice/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Configuration example for newbies 5 | 6 | ## Step 1, open the control panel 7 | The "神秘" App will be installed by default when the 神秘 module is installed. Please open the App to configure the module. 8 | 9 | After the panel is opened, the interface is as follows: 10 | 11 | ![默认密码 node](../assets/20231007234233.jpg) 12 | 13 | Please enter `node` in the input box above. This is your panel password. 14 | 15 | The main interface is as follows: 16 | ![主界面](../assets/20231007232729208.jpg) 17 | 18 | tip: When updating the 神秘 module, the "神秘" data will be automatically cleared to ensure that you use the latest panel. 19 | 20 | ## Step 2, add subscription 21 | 1. Click **设置** to enter the settings page 22 | 2. Click **出站提供者** to enter the **Outbound Provider** settings page 23 | 3. Then click the add button 24 | 4. Enter the information and click **提交** (at the bottom of the page) 25 | ![图片步骤](../assets/novice/20240720030137.jpg) 26 | 27 | ## Step 3, add outbound 28 | 1. Click **返回** to return to the settings page 29 | 2. Click **出站** to enter the **Outbound** settings page 30 | 3. Click the Add button to add outbound 31 | 4. Enter the information and click **提交** (at the bottom of the page) 32 | ![图片教程](../assets/novice/20240720030337.jpg) 33 | 34 | tip: This step can be skipped (not recommended) 35 | 36 | ## Step 4, configure outbound 37 | 1. Click **国外出口** to enter the outbound configuration page 38 | 2. If you skipped **Step 3**, select **your** Airport Subscription under **引用出站提供者** 39 | 3. If you did not skip **Step 3**, select **the outbound you created** in **出站嵌套** 40 | 4. Scroll down and click "提交" 41 | ![图片步骤](../assets/novice/20240720105653.jpg) 42 | 43 | ## Step 5, start 44 | 1. return to home page 45 | 2. Click **启动核心** 46 | ![图片步骤](../assets/novice/20240720110348.jpg) 47 | -------------------------------------------------------------------------------- /docs/novice/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 新手配置示例 5 | 6 | ## 第一步,打开控制面板 7 | 神秘模块在安装时默认会安装“神秘”App,请打开 App 进行模块配置。 8 | 9 | 面板打开后,界面如下: 10 | 11 | ![默认密码 node](../assets/20231007234233.jpg) 12 | 13 | 请在上方输入框中输入 `node`,这是你的面板密码。 14 | 15 | 主界面如下: 16 | ![主界面](../assets/20231007232729208.jpg) 17 | 18 | tip: 更新神秘模块时会自动清除“神秘”的数据,以保证你用到最新的面板。 19 | 20 | ## 第二步,添加订阅 21 | 1. 点击 **设置** 进入设置页面 22 | 2. 点击 **出站提供者** 进入 **出站提供者** 设置页面 23 | 3. 接着点击添加按钮 24 | 4. 输入信息并点击**提交**(在页面下方) 25 | ![图片步骤](../assets/novice/20240720030137.jpg) 26 | 27 | ## 第三步,添加出站 28 | 1. 点击 **返回** 回到设置页面 29 | 2. 点击 **出站** 进入**出站**设置页面 30 | 3. 点击添加按钮添加出站 31 | 4. 输入信息并点击 **提交**(在页面下方) 32 | ![图片教程](../assets/novice/20240720030337.jpg) 33 | 34 | tip: 此步骤可跳过(不建议) 35 | 36 | ## 第四步,配置出站 37 | 1. 点击 **国外出口** 进入出站配置页 38 | 2. 如果你跳过**第三步**,在**引用出站提供者**下面选择**你的**机场订阅 39 | 3. 如果你没跳过**第三步**,在**出站嵌套**处选择**你创建的出站** 40 | 4. 向下滑动并点击“提交” 41 | ![图片步骤](../assets/novice/20240720105653.jpg) 42 | 43 | ## 第五步,启动 44 | 1. 返回主页 45 | 2. 点击**启动核心** 46 | ![图片步骤](../assets/novice/20240720110348.jpg) 47 | -------------------------------------------------------------------------------- /docs/settings/dns/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # DNS 5 | ![DNS](../../assets/20231007232941235.jpg) 6 | 7 | Option explanation: 8 | 9 | | Option | Explain | 10 | | :---- | :---- | 11 | | DNS 服务器 | DNS server configuration list | 12 | | DNS 规则 | in development | 13 | | fakeip | in development | 14 | | DNS 配置 | in development | 15 | 16 | ![DNS服务器](../../assets/23231007232958.jpg) 17 | 18 | ![新增DNS服务器](../../assets/20231007233008821.jpg) 19 | 20 | **DNS 服务器** option explanation: 21 | 22 | | Option | Explain | 23 | | :---- | :---- | 24 | | 新增 DNS 服务器 | Add DNS server configuration | 25 | | 启用 DNS 服务器 | Check Enable current DNS server configuration | 26 | | DNS 服务器名称 | DNS configuration name | 27 | | DNS 服务器地址 | DNS server address, such as **8.8.8.8**, **https://1.12.12.12/dns-query **, **local**, etc. | 28 | | DNS 服务器出站 | Specifies that outbound uses the current DNS configuration | 29 | | 结果偏好 | Five options in total,**使用全局配置**、**优先4代**、**优先6代**、**仅4代**、**仅6代**,Correspond to **global configuration** respectively、**prefer_ipv4**、**prefer_ipv6**、**only_ipv4**、**only_ipv4**。 | 30 | | DNS 服务器地址解析器 | DNS 地址(域名地址)解析的 DNS 配置,或者说,套娃解析? | 31 | | DNS 服务器解析偏好 | Used when resolving the current DNS configuration address. There are five options in total,**使用全局配置**、**优先 ipv4**、**优先 ipv6**、**仅 ipv4**、**仅 ipv6**,Correspond to **global configuration** respectively、**prefer_ipv4**、**prefer_ipv6**(IPv6 优先)、**only_ipv4**、**only_ipv4**。 | 32 | | 备注 | Current configuration notes | 33 | -------------------------------------------------------------------------------- /docs/settings/dns/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # DNS 5 | ![DNS](../../assets/20231007232941235.jpg) 6 | 7 | 选项解释: 8 | 9 | | 名称 | 解释 | 10 | | :---- | :---- | 11 | | DNS 服务器 | DNS 服务器配置列表 | 12 | | DNS 规则 | 香喷喷的大饼 | 13 | | fakeip | 香喷喷的大饼 | 14 | | DNS 配置 | 香喷喷的大饼 | 15 | 16 | ![DNS服务器](../../assets/23231007232958.jpg) 17 | 18 | ![新增DNS服务器](../../assets/20231007233008821.jpg) 19 | 20 | **DNS 服务器**选项解释: 21 | 22 | | 名称 | 解释 | 23 | | :---- | :---- | 24 | | 新增 DNS 服务器 | 添加 DNS 服务器配置 | 25 | | 启用 DNS 服务器 | 勾选启用当前 DNS 服务器配置 | 26 | | DNS 服务器名称 | DNS 配置名 | 27 | | DNS 服务器地址 | DNS 服务器地址,比如 **8.8.8.8**、**https://1.12.12.12/dns-query** 、**local** 等 | 28 | | DNS 服务器出站 | 指定出站使用当前 DNS 配置 | 29 | | 结果偏好 | 共五个选项,**使用全局配置**、**优先4代**、**优先6代**、**仅4代**、**仅6代**,分别对应**全局配置**、**prefer_ipv4**(IPv4 优先)、**prefer_ipv6**(IPv6 优先)、**only_ipv4**(仅 IPv4)、**only_ipv4**(仅 IPv6)。 | 30 | | DNS 服务器地址解析器 | DNS 地址(域名地址)解析的 DNS 配置,或者说,套娃解析? | 31 | | DNS 服务器解析偏好 | 解析当前 DNS 配置地址时使用。共五个选项,**使用全局配置**、**优先 ipv4**、**优先 ipv6**、**仅 ipv4**、**仅 ipv6**,分别对应**全局配置**、**prefer_ipv4**(IPv4 优先)、**prefer_ipv6**(IPv6 优先)、**only_ipv4**(仅 IPv4)、**only_ipv4**(仅 IPv6)。 | 32 | | 备注 | 当前配置备注 | 33 | -------------------------------------------------------------------------------- /docs/settings/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Settings 5 | ![](../assets/20231007232747398.jpg) 6 | 7 | Option explanation: 8 | 9 | | Option | Explain | 10 | | :---- | :---- | 11 | | [出站提供者](./outbound-provider) | (Airport) Network Subscriptions and Local (Node) Files | 12 | | [出站](./outbound) | Traffic exit refers to the way you access the public network | 13 | | 规则提供者 | Under development | 14 | | 路由 | Under development | 15 | | [DNS](./dns) | DNS related settings | 16 | | [模块设置](./setting) | Module settings | 17 | | 入站 | Under development (as opposed to outbound) | 18 | | 实验性功能 | Under development | 19 | | [核心日志](./log) | Log settings | 20 | | [内置 NTP](./ntp) | NTP related settings for calibrating time | 21 | -------------------------------------------------------------------------------- /docs/settings/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 设置 5 | ![](../assets/20231007232747398.jpg) 6 | 7 | 选项解释: 8 | 9 | | 名称 | 解释 | 10 | | :---- | :---- | 11 | | [出站提供者](./outbound-provider) | (机场)网络订阅和本地(节点)文件 | 12 | | [出站](./outbound) | 流量出口,指你访问公网的途径 | 13 | | 规则提供者 | 大饼!是香喷喷的大饼! | 14 | | 路由 | 大饼!是香喷喷的大饼! | 15 | | [DNS](./dns) | DNS 相关设置 | 16 | | [模块设置](./setting) | 模块设置 | 17 | | 入站 | 大饼!是香喷喷的大饼!(与出站相对) | 18 | | 实验性功能 | 大饼!是香喷喷的大饼! | 19 | | [核心日志](./log) | 日志设置 | 20 | | [内置 NTP](./ntp) | NTP 相关设置,用于校准时间 | 21 | -------------------------------------------------------------------------------- /docs/settings/log/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Log Setting 5 | 6 | Option explanation: 7 | | Option | Explain | 8 | | :----: | :----: | 9 | | 禁用日志 | Turn off logging function | 10 | | 日志等级 | There are 7. The logs at the top are more detailed. Please use **trace** to report questions. | 11 | | 日志缓存地址 | Log file path | 12 | | 输出日志时带时间戳 | When outputting logs, output the current time together with | 13 | | 备注 | Notes on this page | 14 | -------------------------------------------------------------------------------- /docs/settings/log/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 日志 5 | 6 | 选项解释: 7 | | 名称 | 解释 | 8 | | :----: | :----: | 9 | | 禁用日志 | 关闭日志功能 | 10 | | 日志等级 | 有 7 个,越是上方的日志越详细,反馈问题请使用 **trace** | 11 | | 日志缓存地址 | 日志文件路径 | 12 | | 输出日志时带时间戳 | 输出日志时一起输出当前时间 | 13 | | 备注 | 本页的备注 | 14 | -------------------------------------------------------------------------------- /docs/settings/ntp/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # NTP time server 5 | 6 | Option explanation: 7 | | Option | Explain | 8 | | :----: | :----: | 9 | | 开启内置 NTP | Enable the core's built-in NTP time server to calibrate time instead of using system time | 10 | | 设置上游 NTP | Custom time server address | 11 | | 上游 NTP 端口 | Custom time server port | 12 | | NTP 校准间隔 | Synchronization interval | 13 | | 备注 | Notes on this page | 14 | -------------------------------------------------------------------------------- /docs/settings/ntp/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # NTP 时间服务器 5 | 6 | 选项解释: 7 | | 名称 | 解释 | 8 | | :----: | :----: | 9 | | 开启内置 NTP | 启用核心内置的 NTP 时间服务器校准时间,而不是使用系统时间 | 10 | | 设置上游 NTP | 自定义时间服务器地址 | 11 | | 上游 NTP 端口 | 自定义时间服务器端口 | 12 | | NTP 校准间隔 | 同步时间间隔 | 13 | | 备注 | 本页备注 | 14 | -------------------------------------------------------------------------------- /docs/settings/outbound-provider/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ![](../../assets/20231007232750279.jpg) 5 | 6 | ## Option explanation 7 | 8 | | Option | Explain | 9 | | :---- | :---- | 10 | | 网络订阅 | Airport network subscription, obtain node information from the airport server | 11 | | 本地文件 | Local node files are generally used to build self-built nodes and avoid streaming. The file storage location is located at `/data/adb/sfm/src/FileProviders/`, which can now be modified through the panel without opening the directory. | 12 | | 修改文件 | Modify the local node file. For details on the syntax, see [Local node file writing method] (#Local node file writing method) | 13 | | 订阅链接 | Subscription link, recommended Clash subscription | 14 | | 可否被引用 | Whether to enable this outbound provider, enabling means using this subscription. Miao Lao's original words: "(Not enabled) will not be added to the configuration file at all." | 15 | | 订阅拉取间隔 | How often to update the airport subscription, the default is 3600, which is one hour | 16 | | 拉取订阅时查询订阅信息 | Check airport traffic and usage status | 17 | | 修改提供者内出站设置 | The following are all modification requests, used to avoid streaming, and will not be introduced. | 18 | 19 | ## How to write local node files 20 | - Link format using protocol 21 | For example: 22 | ``` 23 | vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIkBTU1JTVUItVjE1LeS7mOi0ueaOqOiNkDpzdW8ueXQvc3Nyc3ViIiwNCiAgImFkZCI6ICJqcDQuYWY0OWM0ZTRjMmVmLnNhbmZlbjAwNC5tZSIsDQogICJwb3J0IjogIjQ0MyIsDQogICJpZCI6ICJjNDg2OGI4YS0xZjVjLTQ1MzYtYjE5MS1kNTQyOWMyZTE0YjciLA0KICAiYWlkIjogIjAiLA0KICAic2N5IjogImF1dG8iLA0KICAibmV0IjogInRjcCIsDQogICJ0eXBlIjogIm5vbmUiLA0KICAiaG9zdCI6ICJqcDQuYWY0OWM0ZTRjMmVmLnNhbmZlbjAwNC5tZSIsDQogICJwYXRoIjogIiIsDQogICJ0bHMiOiAidGxzIiwNCiAgInNuaSI6ICIiLA0KICAiYWxwbiI6ICIiDQp9 24 | hy2://962144c6@proxy.114514.com:9265/?insecure=1&sni=www.baidu.com#🇰🇷日本-Hysteria2 25 | ``` 26 | For details, please refer to the link format of Baidu/Google corresponding agreement. 27 | 28 | - Use clash/mihomo configuration 29 | For example: 30 | ```yaml 31 | proxies: 32 | # - {name: "Outbound Name", type: protocol type, server: IP address, port: port, udp: Is it the underlying protocol of udp, tls: false, skip-cert-verify: Whether to skip certificate verification, headers: {Request header}} 33 | # one line writing 34 | - {name: HK, type: http, server: 112.47.20.215, port: 443, udp: false, tls: false, skip-cert-verify: false, headers: {}} 35 | # multi-line writing 36 | - name: HK1 37 | type: ss 38 | server: 114.5.1.4 39 | port: 9265 40 | tls: true 41 | sni: baidu.com 42 | password: lYEiyacJG4m3UozsejfhRiwIjXfdnO4R+oflSfbl1G8= 43 | ``` 44 | Please check [mihomo wiki](https://wiki.metacubex.one) for details 45 | 46 | - Use sing-box configuration format 47 | For example: 48 | ```json 49 | { 50 | "outbounds": [ 51 | // one line writing 52 | { "tag": "HK", "type": "hysteria2", "server": "proxy.example.com", "server_port": 23333, "password": "937a450d-b5e7-4a34-b671-ac9899abb7a47", "tls": { "enabled": true }, "tcp_fast_open": false }, 53 | // multi-line writing 54 | { 55 | "tag": "HK", 56 | "type": "hysteria2", 57 | "server": "proxy.xireiki.com", 58 | "server_port": 23333, 59 | "password": "937a450d-b5e7-4a34-b671-ac9899abb7a47", 60 | "tls": { 61 | "enabled": true 62 | }, 63 | "tcp_fast_open": false 64 | } 65 | ] 66 | } 67 | ``` 68 | For details, please check [sing-box wiki](https://sing-box.sagernet.org) 69 | -------------------------------------------------------------------------------- /docs/settings/outbound-provider/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ![](../../assets/20231007232750279.jpg) 5 | 6 | ## 选项解释 7 | 8 | | 名称 | 解释 | 9 | | :---- | :---- | 10 | | 网络订阅 | 机场网络订阅,从机场服务器获取节点信息 | 11 | | 本地文件 | 本地节点文件,一般用于自建节点,免流。文件存放位置位于 `/data/adb/sfm/src/FileProviders/`,现在已经可以通过面板修改,无需打开目录 | 12 | | 修改文件 | 修改本地节点文件,语法详见[本地节点文件写法](#本地节点文件写法) | 13 | | 订阅链接 | 订阅链接,推荐 Clash 的订阅 | 14 | | 可否被引用 | 是否启用该出站提供者,启用表示使用这个订阅。喵佬原话:“(不启用)是根本不会被加入配置文件” | 15 | | 订阅拉取间隔 | 多久更新一次机场订阅,默认 3600,也就是一个小时 | 16 | | 拉取订阅时查询订阅信息 | 查询机场流量及使用情况 | 17 | | 修改提供者内出站设置 | 下面的都是修改请求的,用于免流,不介绍 | 18 | 19 | ## 本地节点文件写法 20 | - 使用节点链接 21 | 如: 22 | ``` 23 | vmess://ew0KICAidiI6ICIyIiwNCiAgInBzIjogIkBTU1JTVUItVjE1LeS7mOi0ueaOqOiNkDpzdW8ueXQvc3Nyc3ViIiwNCiAgImFkZCI6ICJqcDQuYWY0OWM0ZTRjMmVmLnNhbmZlbjAwNC5tZSIsDQogICJwb3J0IjogIjQ0MyIsDQogICJpZCI6ICJjNDg2OGI4YS0xZjVjLTQ1MzYtYjE5MS1kNTQyOWMyZTE0YjciLA0KICAiYWlkIjogIjAiLA0KICAic2N5IjogImF1dG8iLA0KICAibmV0IjogInRjcCIsDQogICJ0eXBlIjogIm5vbmUiLA0KICAiaG9zdCI6ICJqcDQuYWY0OWM0ZTRjMmVmLnNhbmZlbjAwNC5tZSIsDQogICJwYXRoIjogIiIsDQogICJ0bHMiOiAidGxzIiwNCiAgInNuaSI6ICIiLA0KICAiYWxwbiI6ICIiDQp9 24 | hy2://962144c6@proxy.114514.com:9265/?insecure=1&sni=www.baidu.com#🇰🇷日本-Hysteria2 25 | ``` 26 | 具体请自行百度/谷歌对应协议的链接格式 27 | 28 | - 使用 clash/mihomo 配置 29 | 如: 30 | ```yaml 31 | proxies: 32 | # - {name: 节点名称, type: 协议类型, server: IP地址, port: 端口, udp: 是否是udp底层协议, tls: false, skip-cert-verify: 是否跳过证书验证, headers: {请求头}} 33 | # 一行写法 34 | - {name: 免费节点, type: http, server: 112.47.20.215, port: 443, udp: false, tls: false, skip-cert-verify: false, headers: {}} 35 | # 多行写法 36 | - name: 免费节点1 37 | type: ss 38 | server: 114.5.1.4 39 | port: 9265 40 | tls: true 41 | sni: baidu.com 42 | password: lYEiyacJG4m3UozsejfhRiwIjXfdnO4R+oflSfbl1G8= 43 | ``` 44 | 具体请查看 [mihomo wiki](https://wiki.metacubex.one) 45 | 46 | - 使用 sing-box 配置格式 47 | 如: 48 | ```json 49 | { 50 | "outbounds": [ 51 | // 一行写法 52 | { "tag": "香港", "type": "hysteria2", "server": "proxy.example.com", "server_port": 23333, "password": "937a450d-b5e7-4a34-b671-ac9899abb7a47", "tls": { "enabled": true }, "tcp_fast_open": false }, 53 | // 多行写法 54 | { 55 | "tag": "香港", 56 | "type": "hysteria2", 57 | "server": "proxy.xireiki.com", 58 | "server_port": 23333, 59 | "password": "937a450d-b5e7-4a34-b671-ac9899abb7a47", 60 | "tls": { 61 | "enabled": true 62 | }, 63 | "tcp_fast_open": false 64 | } 65 | ] 66 | } 67 | ``` 68 | 具体请查看 [sing-box wiki](https://sing-box.sagernet.org) 69 | -------------------------------------------------------------------------------- /docs/settings/outbound/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Outbound 5 | 6 | **These three outbound names can be changed, but cannot be deleted! ! ! ** 7 | 8 | If you modify their names, the rules will be automatically followed, but deleting them will directly change them to **direct**, resulting in the inability to connect to the external network and avoid streaming no matter how configured. 9 | 10 | Now their names have been changed,**proxy** changed to **国外出口**,**domestic** changed to **国内出口**,Another **GLOBAL** was changed to **全局代理**. 11 | 12 | ![](../../assets/20231008000436.jpg) 13 | 14 | If you delete it, don’t have internet access, or report an error, don’t ask questions in the group! ! ! 15 | 16 | ![](../../assets/20231007232910.jpg) 17 | 18 | ## Option explanation 19 | | Option | Explain | 20 | | :---- | :---- | 21 | | 自动选择 | Automatic speed test (urltest), automatically selects the best (lowest latency) node | 22 | | 手动选择 | You choose the node yourself (select) | 23 | | 启用出站 | Whether to use this outbound | 24 | | 出站嵌套 | Include Other Outbound as an outbound provider. Your defaults are only direct (direct connection, not through proxy), block (disconnected, "black hole routing"), 国外出口(proxy), 国内出口(domestic), 全局出口(Global) | 25 | | 出站测试地址 | Speed ​​test link | 26 | | 出站测试间隔 | The time between two speed measurements | 27 | | 出站测试容差 | Speed ​​measurement interval for each node | 28 | | 引用出站提供者 | Which outbound providers to nest. “全部” means nesting all outbound providers, “部分” selects the outbound provider below | 29 | | 筛选出站名称(包含) | As long as the regular expression matches the node | 30 | | 筛选出站名称(排除) | No nodes matched by regular expressions | 31 | | 筛选出站类型 | If you do not select it, then all types (transmission protocols) are selected; if you select one or more, then except for the nodes corresponding to the protocol type you selected, the remaining nodes are discarded and are not included in this outbound | 32 | | 筛选出站端口 | Only nodes with ports within the range, such as 80:8080, means only nodes with ports 80 to 8080, :8080 means ports smaller than 8080 (inclusive) | 33 | -------------------------------------------------------------------------------- /docs/settings/outbound/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 出站 5 | 6 | **这三个出站的名字可以改,但不能删除!!!** 7 | 8 | 修改它们的名字,规则会自动尾随,但是删除会直接变成 **direct**,导致不论如何配置都不能连上外网、进行免流。 9 | 10 | 现在他们的名称已被修改,**proxy** 改为了 **国外出口**,**domestic** 改为了 **国内出口**,另 **GLOBAL** 改为了**全局代理** 11 | 12 | ![](../../assets/20231008000436.jpg) 13 | 14 | 如果你删了,没网、报错不要在群里提问!!! 15 | 16 | ![](../../assets/20231007232910.jpg) 17 | 18 | ### 选项解释 19 | | 名称 | 解释 | 20 | | :---- | :---- | 21 | | 自动选择 | 自动测速(urltest),自动选择最优(延迟最低)节点 | 22 | | 手动选择 | 你自己选择节点(select) | 23 | | 启用出站 | 是否使用这个出站 | 24 | | 出站嵌套 | 包含其他出站作为出站提供者。你的默认只有 direct(直连,不通过代理)、block(断开,“黑洞路由”)、proxy(代理)、domestic(国内) | 25 | | 出站测试地址 | 测速链接 | 26 | | 出站测试间隔 | 两次测速之间间隔的时间 | 27 | | 出站测试容差 | 每个节点测速间隔 | 28 | | 引用出站提供者 | 嵌套哪些出站提供者。全部表示嵌套所有出站提供者,部分在下方选择出站提供者 | 29 | | 筛选出站名称(包含) | 只要正则表达式匹配到的节点 | 30 | | 筛选出站名称(排除) | 不要正则表达式匹配到的节点 | 31 | | 筛选出站类型 | 如果不选择那么就是选择所有类型(传输协议);如果选择一个及以上,那么除了你选择的协议类型对应的节点外,其余节点丢弃,不包含在本出站内 | 32 | | 筛选出站端口 | 只要范围内端口的节点,比如 80:8080,表示只要 80 端口到 8080 端口的节点,:8080 表示比 8080 小的端口(包含) | 33 | -------------------------------------------------------------------------------- /docs/settings/setting/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # Module settings 5 | ![](../../assets/20231007232932387.jpg) 6 | 7 | Option explanation: 8 | 9 | | Option | Explain | 10 | | :---- | :---- | 11 | | 核心跟随模块启动 | Automatically connect to the agent when booting | 12 | | 设置 api 响应范围 | Only this machine means that “仅本机” can access the panel; “任意来源” means that all devices connected to the hotspot of this device can access the panel and control it. The panel address is the LAN IP of the hotspot machine plus the port number, such as [http://192.168.43.1:23333](http://192.168.43.1:23333) | 13 | | 设置 api 验证密钥 | Password to enter the panel | 14 | | 定时更新网络订阅 | Literally, automatically renew airport subscriptions. After closing, the subscription will not be updated. You need to manually click **Pull** or **Pull All** | 15 | | 定时更新 Geo 数据库 | Literally, it automatically updates the Geo database to more accurately determine whether the traffic needs to go domestic or overseas. | 16 | | 核心启动时立即守护 | Start guarding the core when the core is started, not after the core is started correctly. | 17 | | 切换代理模式 | Mysterious traffic processing mode, with rule mode, automatically determines traffic direction through preset rules; global proxy, all traffic goes abroad; global direct connection, all traffic goes domestic | 18 | | 开启 ipv6 | Enable IPv6 | 19 | | 面板显示速率 | Display current upload and download speeds on the home page | 20 | | 使用 yard(不推荐) | Using the yard panel, after opening it, the core of the operation is no longer mysterious, but yard. If you do not open this option, you can also access [yard](http://localhost:9909/ui/?hostname=127.0.0.1&port=9909&secret=singBox) | 21 | | 生成脱敏核心配置 | Generate baseConfig.yaml file for sharing assistance shareBaseConfig.yaml | 22 | -------------------------------------------------------------------------------- /docs/settings/setting/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | # 模块设置 5 | ![](../../assets/20231007232932387.jpg) 6 | 7 | 选项解释: 8 | 9 | | 名称 | 解释 | 10 | | :---- | :---- | 11 | | 核心跟随模块启动 | 开机就自动连上代理 | 12 | | 设置 api 响应范围 | 仅本机表示只有本机能访问面板;任意来源表示所有连接上这台设备的热点的设备都能访问面板并操控它。面板地址是热点机的局域网 IP 加端口号,比如 [http://192.168.43.1:23333](http://192.168.43.1:23333) | 13 | | 设置 api 验证密钥 | 进入面板的密码 | 14 | | 定时更新网络订阅 | 字面意思,自动更新机场订阅。关闭之后不会再更新订阅,需要你手动点击**更新**或者**全部施法** | 15 | | 定时更新 Geo 数据库 | 字面意思,自动更新 Geo 数据库,用来更准确的判断流量是需要走国内还是走国外 | 16 | | 核心启动时立即守护 | 启动核心就开始守护核心,而不是核心正确启动后 | 17 | | 切换代理模式 | 神秘的流量处理模式,有规则模式,通过预设的规则自动判断流量走向;全局代理,所有流量都走国外;全局直连,所有流量都走国内 | 18 | | 开启 ipv6 | 字面意思 | 19 | | 面板显示速率 | 在主页显示当前的上传和下载的速度 | 20 | | 使用 yard(不推荐) | 使用 yard 面板,打开后操作核心不再是神秘,而是 yard,不打开这个选项,也可以通过链接访问 [yard](http://localhost:9909/ui/?hostname=127.0.0.1&port=9909&secret=singBox) | 21 | | 生成脱敏核心配置 | 生成用于分享求助的 baseConfig.yaml 文件 shareBaseConfig.yaml | 22 | -------------------------------------------------------------------------------- /docs/stylesheets/extra.css: -------------------------------------------------------------------------------- 1 | :root { 2 | --md-primary-fg-color: #66ccff; 3 | --md-primary-fg-color--light: #2983bb; 4 | --md-primary-fg-color--dark: #1781b5; 5 | } 6 | 7 | [data-md-color-scheme="light"] { 8 | --md-primary-fg-color: #66ccff; 9 | --md-primary-fg-color--light: #2983bb; 10 | --md-primary-fg-color--dark: #1781b5; 11 | } 12 | 13 | [data-md-color-scheme="night"] { 14 | --md-primary-fg-color: #1781b5; 15 | --md-primary-fg-color--light: #66ccff; 16 | --md-primary-fg-color--dark: #2983bb; 17 | } 18 | -------------------------------------------------------------------------------- /docs/termux/index.en.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ## Installing the [Termux](https://github.com/termux/termux-app/releases) Application 5 | Termux has two release channels, [Github](https://github.com/termux/termux-app/releases) and [F-Droid](https://f-droid.org/packages/com.termux/ ), novices are advised to download the version of [F-Droid](https://f-droid.org/packages/com.termux/) (click on the text to go to the corresponding download channel) 6 | 7 | Tip: If you don’t want to do this step, you can use [my modified version](https://t.me/xiayinlily)(NoTermux), which removes environment dependencies. 8 | 9 | ## Install nodejs and aapt (please view README.md for PC version) 10 | Open Termux and execute the following commands in sequence. I will explain them one by one. 11 | 12 | Prior statement: **Since the official source is slow, please consider accessing through a proxy as appropriate! ** 13 | 14 | Tip: You can also search for the source replacement method yourself (not recommended). 15 | 16 | This command is used to update all software packages currently in Termux. If you get stuck during the installation process, please use the input method, enter a lowercase `y` and press Enter: 17 | ```bash 18 | pkg up -y 19 | ``` 20 | 21 | The last step is to install nodejs and aapt 22 | ```bash 23 | pkg in nodejs aapt -y 24 | ``` 25 | 26 | Check whether nodejs is installed. As shown in the figure, the installation is successful. 27 | ```bash 28 | node -v 29 | ``` 30 | 31 | ![](../assets/20230505102753101.jpg) 32 | 33 | This picture comes from: [Introduction to Mysterious Module Tutorial (Android)](https://telegra.ph/%E7%A5%9E%E7%A7%98%E6%A8%A1%E5%9D%97%E7 %AE%80%E6%98%8E%E6%95%99%E7%A8%8BAndroid%E7%AB%AF-04-06) 34 | 35 | Check whether aapt is installed successfully. If a lot of text is output as shown in the figure, it is successful. 36 | ```bash 37 | aapt 38 | ``` 39 | 40 | ![Installation successful](../assets/20230906153119436.jpg) 41 | 42 | If you are prompted that **aapt 环境损坏** when installing a module, please execute `pkg uninstall aapt` to uninstall **aapt** and then execute `pkg up && pkg in aapt` to reinstall **aapt**. 43 | 44 | If you are prompted that **node 环境损坏** when installing a module, please execute `pkg uninstall nodejs` to uninstall **nodejs** and then execute `pkg up && pkg in nodejs` to reinstall **nodejs**. 45 | -------------------------------------------------------------------------------- /docs/termux/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | comments: true 3 | --- 4 | ## 安装 [Termux](https://github.com/termux/termux-app/releases) 应用 5 | Termux 有两个发布渠道,[Github](https://github.com/termux/termux-app/releases) 和 [F-Droid](https://f-droid.org/packages/com.termux/),小白建议下载 [F-Droid](https://f-droid.org/packages/com.termux/) 的版本(点击文字前往对应下载渠道) 6 | 7 | Tip: 如果你不想进行这一步,可以使用[我的修改版](https://t.me/xiayinlily)(NoTermux),它去除了环境依赖。 8 | 9 | ## 安装 nodejs 和 aapt(电脑版请查看 README.md) 10 | 打开 Termux,依次执行以下命令,我会一条条讲解。 11 | 12 | 事先声明:**由于官方源较慢,请酌情考虑挂梯子执行!** 13 | 14 | Tip: 也可以自己搜索换源方法(不建议)。 15 | 16 | 这条命令用于更新目前 Termux 中的所有软件包,在安装过程中如果卡住不动了,请使用输入法,输入一个小写 `y` 并回车: 17 | ```bash 18 | pkg up -y 19 | ``` 20 | 21 | 最后一步,安装 nodejs 和 aapt 22 | ```bash 23 | pkg in nodejs aapt -y 24 | ``` 25 | 26 | 检查 nodejs 是否安装,如图所示即为安装成功 27 | ```bash 28 | node -v 29 | ``` 30 | 31 | ![](../assets/20230505102753101.jpg) 32 | 33 | 这张图来自: [神秘模块入门教程(安卓端)](https://telegra.ph/%E7%A5%9E%E7%A7%98%E6%A8%A1%E5%9D%97%E7%AE%80%E6%98%8E%E6%95%99%E7%A8%8BAndroid%E7%AB%AF-04-06) 34 | 35 | 检查 aapt 是否安装成功,如图输出一大堆文字即为成功。 36 | ```bash 37 | aapt 38 | ``` 39 | 40 | ![安装成功](../assets/20230906153119436.jpg) 41 | 42 | 如果在安装模块时提示 **aapt 环境损坏** 请执行 `pkg uninstall aapt` 卸载 **aapt** 后执行 `pkg up && pkg in aapt` 以重新安装 **aapt**。 43 | 44 | 如果在安装模块时提示 **node 环境损坏** 请执行 `pkg uninstall nodejs` 卸载 **nodejs** 后执行 `pkg up && pkg in nodejs` 以重新安装 **nodejs**。 -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- 1 | site_name: 神秘模块详细教程 2 | site_url: https://tutor.xireiki.com 3 | site_author: xireiki 4 | copyright: Copyright © 2024 - 2024 xireiki 5 | repo_url: https://github.com/jasmoli/tutor 6 | extra_css: 7 | - stylesheets/extra.css 8 | extra: 9 | generator: false 10 | social: 11 | - icon: fontawesome/brands/telegram 12 | link: https://t.me/xiayinlily 13 | - icon: fontawesome/brands/github 14 | link: https://github.com/jasmoli/tutor 15 | - icon: simple/hexo 16 | link: https://xireiki.com 17 | theme: 18 | name: material 19 | custom_dir: overrides 20 | logo: assets/icon.gif 21 | favicon: assets/icon.gif 22 | features: 23 | - navigation.footer 24 | palette: 25 | - media: "(prefers-color-scheme: light)" 26 | scheme: light 27 | primary: custom 28 | toggle: 29 | icon: material/brightness-7 30 | name: Switch to dark mode 31 | - media: "(prefers-color-scheme: dark)" 32 | scheme: slate 33 | primary: black 34 | toggle: 35 | icon: material/brightness-4 36 | name: Switch to light mode 37 | nav: 38 | - 主页: index.md 39 | - 介绍: introduction/index.md 40 | - 安装 Termux: termux/index.md 41 | - 安装神秘: mystery/index.md 42 | - 新手配置: novice/index.md 43 | - 神秘面板首页: home/index.md 44 | - 设置: 45 | - settings/index.md 46 | - 出站提供者: settings/outbound-provider/index.md 47 | - 出站: settings/outbound/index.md 48 | - DNS: settings/dns/index.md 49 | - 模块设置: settings/setting/index.md 50 | - 核心日志: settings/log/index.md 51 | - 内置 NTP: settings/ntp/index.md 52 | - 修改配置文件: config/index.md 53 | - 常见问题: FAQ/index.md 54 | plugins: 55 | - search 56 | - i18n: 57 | docs_structure: suffix 58 | fallback_to_default: true 59 | reconfigure_material: true 60 | reconfigure_search: true 61 | languages: 62 | - build: true 63 | default: true 64 | locale: zh 65 | name: 简体中文 66 | - build: true 67 | default: false 68 | locale: en 69 | name: English 70 | nav_translations: 71 | 主页: Home 72 | 介绍: Introductions 73 | 安装 Termux: Installing Termux 74 | 安装神秘: Installing the 神秘 Module 75 | 新手配置: Novice Configuration 76 | 神秘面板首页: Mystery Panel Home 77 | 设置: Settings 78 | 79 | 出站提供者: Outbound Provider 80 | 出站: Outbound 81 | DNS: DNS 82 | 模块设置: Module Settings 83 | 核心日志: Log 84 | 内置 NTP: NTP 85 | 86 | 修改配置文件: Modify the configuration file 87 | 88 | 常见问题: FAQ 89 | -------------------------------------------------------------------------------- /overrides/partials/comments.html: -------------------------------------------------------------------------------- 1 | {% if page.meta.comments %} 2 |

{{ lang.t("meta.comments") }}

3 | 4 | 19 | 20 | 54 | {% endif %} --------------------------------------------------------------------------------