├── .gitignore ├── .gitmodules ├── .licenses ├── Kernel64Patcher_LICENSE ├── gtar_LICENSE ├── img4tool_LICENSE ├── iproxy_LICENSE ├── jq_LICENSE ├── libdmg-hfsplus_LICENSE ├── libirecovery_COPYING ├── partialZipBrowser_LICENSE ├── sshpass_LICENSE └── xcbuild_LICENSE ├── Darwin ├── Kernel64Patcher ├── gtar ├── iBoot64Patcher ├── img4 ├── img4tool ├── iproxy ├── irecovery ├── jq ├── pzb └── sshpass ├── LICENSE ├── Linux ├── Kernel64Patcher ├── PlistBuddy ├── hfsplus ├── iBoot64Patcher ├── img4 ├── img4tool ├── iproxy ├── irecovery ├── jq ├── pzb └── sshpass ├── README.md ├── create_ssh_ramdisk.py ├── other ├── logo.im4p └── shsh │ ├── 0x7000.shsh │ ├── 0x7001.shsh │ ├── 0x8000.shsh │ ├── 0x8001.shsh │ ├── 0x8003.shsh │ ├── 0x8010.shsh │ ├── 0x8011.shsh │ ├── 0x8012.shsh │ ├── 0x8015.shsh │ └── 0x8960.shsh └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | Darwin/gaster 3 | Linux/gaster 4 | final_ramdisk 5 | temp_ramdisk 6 | .irecovery 7 | .idea 8 | venv 9 | *.log 10 | 11 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "sshtars"] 2 | path = sshtars 3 | url = https://github.com/verygenericname/sshtars 4 | -------------------------------------------------------------------------------- /.licenses/img4tool_LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /.licenses/iproxy_LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 2.1, February 1999 3 | 4 | Copyright (C) 1991, 1999 Free Software Foundation, Inc. 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | [This is the first released version of the Lesser GPL. It also counts 10 | as the successor of the GNU Library Public License, version 2, hence 11 | the version number 2.1.] 12 | 13 | Preamble 14 | 15 | The licenses for most software are designed to take away your 16 | freedom to share and change it. By contrast, the GNU General Public 17 | Licenses are intended to guarantee your freedom to share and change 18 | free software--to make sure the software is free for all its users. 19 | 20 | This license, the Lesser General Public License, applies to some 21 | specially designated software packages--typically libraries--of the 22 | Free Software Foundation and other authors who decide to use it. You 23 | can use it too, but we suggest you first think carefully about whether 24 | this license or the ordinary General Public License is the better 25 | strategy to use in any particular case, based on the explanations below. 26 | 27 | When we speak of free software, we are referring to freedom of use, 28 | not price. Our General Public Licenses are designed to make sure that 29 | you have the freedom to distribute copies of free software (and charge 30 | for this service if you wish); that you receive source code or can get 31 | it if you want it; that you can change the software and use pieces of 32 | it in new free programs; and that you are informed that you can do 33 | these things. 34 | 35 | To protect your rights, we need to make restrictions that forbid 36 | distributors to deny you these rights or to ask you to surrender these 37 | rights. These restrictions translate to certain responsibilities for 38 | you if you distribute copies of the library or if you modify it. 39 | 40 | For example, if you distribute copies of the library, whether gratis 41 | or for a fee, you must give the recipients all the rights that we gave 42 | you. You must make sure that they, too, receive or can get the source 43 | code. If you link other code with the library, you must provide 44 | complete object files to the recipients, so that they can relink them 45 | with the library after making changes to the library and recompiling 46 | it. And you must show them these terms so they know their rights. 47 | 48 | We protect your rights with a two-step method: (1) we copyright the 49 | library, and (2) we offer you this license, which gives you legal 50 | permission to copy, distribute and/or modify the library. 51 | 52 | To protect each distributor, we want to make it very clear that 53 | there is no warranty for the free library. Also, if the library is 54 | modified by someone else and passed on, the recipients should know 55 | that what they have is not the original version, so that the original 56 | author's reputation will not be affected by problems that might be 57 | introduced by others. 58 | 59 | Finally, software patents pose a constant threat to the existence of 60 | any free program. We wish to make sure that a company cannot 61 | effectively restrict the users of a free program by obtaining a 62 | restrictive license from a patent holder. Therefore, we insist that 63 | any patent license obtained for a version of the library must be 64 | consistent with the full freedom of use specified in this license. 65 | 66 | Most GNU software, including some libraries, is covered by the 67 | ordinary GNU General Public License. This license, the GNU Lesser 68 | General Public License, applies to certain designated libraries, and 69 | is quite different from the ordinary General Public License. We use 70 | this license for certain libraries in order to permit linking those 71 | libraries into non-free programs. 72 | 73 | When a program is linked with a library, whether statically or using 74 | a shared library, the combination of the two is legally speaking a 75 | combined work, a derivative of the original library. The ordinary 76 | General Public License therefore permits such linking only if the 77 | entire combination fits its criteria of freedom. The Lesser General 78 | Public License permits more lax criteria for linking other code with 79 | the library. 80 | 81 | We call this license the "Lesser" General Public License because it 82 | does Less to protect the user's freedom than the ordinary General 83 | Public License. It also provides other free software developers Less 84 | of an advantage over competing non-free programs. These disadvantages 85 | are the reason we use the ordinary General Public License for many 86 | libraries. However, the Lesser license provides advantages in certain 87 | special circumstances. 88 | 89 | For example, on rare occasions, there may be a special need to 90 | encourage the widest possible use of a certain library, so that it becomes 91 | a de-facto standard. To achieve this, non-free programs must be 92 | allowed to use the library. A more frequent case is that a free 93 | library does the same job as widely used non-free libraries. In this 94 | case, there is little to gain by limiting the free library to free 95 | software only, so we use the Lesser General Public License. 96 | 97 | In other cases, permission to use a particular library in non-free 98 | programs enables a greater number of people to use a large body of 99 | free software. For example, permission to use the GNU C Library in 100 | non-free programs enables many more people to use the whole GNU 101 | operating system, as well as its variant, the GNU/Linux operating 102 | system. 103 | 104 | Although the Lesser General Public License is Less protective of the 105 | users' freedom, it does ensure that the user of a program that is 106 | linked with the Library has the freedom and the wherewithal to run 107 | that program using a modified version of the Library. 108 | 109 | The precise terms and conditions for copying, distribution and 110 | modification follow. Pay close attention to the difference between a 111 | "work based on the library" and a "work that uses the library". The 112 | former contains code derived from the library, whereas the latter must 113 | be combined with the library in order to run. 114 | 115 | GNU LESSER GENERAL PUBLIC LICENSE 116 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 117 | 118 | 0. This License Agreement applies to any software library or other 119 | program which contains a notice placed by the copyright holder or 120 | other authorized party saying it may be distributed under the terms of 121 | this Lesser General Public License (also called "this License"). 122 | Each licensee is addressed as "you". 123 | 124 | A "library" means a collection of software functions and/or data 125 | prepared so as to be conveniently linked with application programs 126 | (which use some of those functions and data) to form executables. 127 | 128 | The "Library", below, refers to any such software library or work 129 | which has been distributed under these terms. A "work based on the 130 | Library" means either the Library or any derivative work under 131 | copyright law: that is to say, a work containing the Library or a 132 | portion of it, either verbatim or with modifications and/or translated 133 | straightforwardly into another language. (Hereinafter, translation is 134 | included without limitation in the term "modification".) 135 | 136 | "Source code" for a work means the preferred form of the work for 137 | making modifications to it. For a library, complete source code means 138 | all the source code for all modules it contains, plus any associated 139 | interface definition files, plus the scripts used to control compilation 140 | and installation of the library. 141 | 142 | Activities other than copying, distribution and modification are not 143 | covered by this License; they are outside its scope. The act of 144 | running a program using the Library is not restricted, and output from 145 | such a program is covered only if its contents constitute a work based 146 | on the Library (independent of the use of the Library in a tool for 147 | writing it). Whether that is true depends on what the Library does 148 | and what the program that uses the Library does. 149 | 150 | 1. You may copy and distribute verbatim copies of the Library's 151 | complete source code as you receive it, in any medium, provided that 152 | you conspicuously and appropriately publish on each copy an 153 | appropriate copyright notice and disclaimer of warranty; keep intact 154 | all the notices that refer to this License and to the absence of any 155 | warranty; and distribute a copy of this License along with the 156 | Library. 157 | 158 | You may charge a fee for the physical act of transferring a copy, 159 | and you may at your option offer warranty protection in exchange for a 160 | fee. 161 | 162 | 2. You may modify your copy or copies of the Library or any portion 163 | of it, thus forming a work based on the Library, and copy and 164 | distribute such modifications or work under the terms of Section 1 165 | above, provided that you also meet all of these conditions: 166 | 167 | a) The modified work must itself be a software library. 168 | 169 | b) You must cause the files modified to carry prominent notices 170 | stating that you changed the files and the date of any change. 171 | 172 | c) You must cause the whole of the work to be licensed at no 173 | charge to all third parties under the terms of this License. 174 | 175 | d) If a facility in the modified Library refers to a function or a 176 | table of data to be supplied by an application program that uses 177 | the facility, other than as an argument passed when the facility 178 | is invoked, then you must make a good faith effort to ensure that, 179 | in the event an application does not supply such function or 180 | table, the facility still operates, and performs whatever part of 181 | its purpose remains meaningful. 182 | 183 | (For example, a function in a library to compute square roots has 184 | a purpose that is entirely well-defined independent of the 185 | application. Therefore, Subsection 2d requires that any 186 | application-supplied function or table used by this function must 187 | be optional: if the application does not supply it, the square 188 | root function must still compute square roots.) 189 | 190 | These requirements apply to the modified work as a whole. If 191 | identifiable sections of that work are not derived from the Library, 192 | and can be reasonably considered independent and separate works in 193 | themselves, then this License, and its terms, do not apply to those 194 | sections when you distribute them as separate works. But when you 195 | distribute the same sections as part of a whole which is a work based 196 | on the Library, the distribution of the whole must be on the terms of 197 | this License, whose permissions for other licensees extend to the 198 | entire whole, and thus to each and every part regardless of who wrote 199 | it. 200 | 201 | Thus, it is not the intent of this section to claim rights or contest 202 | your rights to work written entirely by you; rather, the intent is to 203 | exercise the right to control the distribution of derivative or 204 | collective works based on the Library. 205 | 206 | In addition, mere aggregation of another work not based on the Library 207 | with the Library (or with a work based on the Library) on a volume of 208 | a storage or distribution medium does not bring the other work under 209 | the scope of this License. 210 | 211 | 3. You may opt to apply the terms of the ordinary GNU General Public 212 | License instead of this License to a given copy of the Library. To do 213 | this, you must alter all the notices that refer to this License, so 214 | that they refer to the ordinary GNU General Public License, version 2, 215 | instead of to this License. (If a newer version than version 2 of the 216 | ordinary GNU General Public License has appeared, then you can specify 217 | that version instead if you wish.) Do not make any other change in 218 | these notices. 219 | 220 | Once this change is made in a given copy, it is irreversible for 221 | that copy, so the ordinary GNU General Public License applies to all 222 | subsequent copies and derivative works made from that copy. 223 | 224 | This option is useful when you wish to copy part of the code of 225 | the Library into a program that is not a library. 226 | 227 | 4. You may copy and distribute the Library (or a portion or 228 | derivative of it, under Section 2) in object code or executable form 229 | under the terms of Sections 1 and 2 above provided that you accompany 230 | it with the complete corresponding machine-readable source code, which 231 | must be distributed under the terms of Sections 1 and 2 above on a 232 | medium customarily used for software interchange. 233 | 234 | If distribution of object code is made by offering access to copy 235 | from a designated place, then offering equivalent access to copy the 236 | source code from the same place satisfies the requirement to 237 | distribute the source code, even though third parties are not 238 | compelled to copy the source along with the object code. 239 | 240 | 5. A program that contains no derivative of any portion of the 241 | Library, but is designed to work with the Library by being compiled or 242 | linked with it, is called a "work that uses the Library". Such a 243 | work, in isolation, is not a derivative work of the Library, and 244 | therefore falls outside the scope of this License. 245 | 246 | However, linking a "work that uses the Library" with the Library 247 | creates an executable that is a derivative of the Library (because it 248 | contains portions of the Library), rather than a "work that uses the 249 | library". The executable is therefore covered by this License. 250 | Section 6 states terms for distribution of such executables. 251 | 252 | When a "work that uses the Library" uses material from a header file 253 | that is part of the Library, the object code for the work may be a 254 | derivative work of the Library even though the source code is not. 255 | Whether this is true is especially significant if the work can be 256 | linked without the Library, or if the work is itself a library. The 257 | threshold for this to be true is not precisely defined by law. 258 | 259 | If such an object file uses only numerical parameters, data 260 | structure layouts and accessors, and small macros and small inline 261 | functions (ten lines or less in length), then the use of the object 262 | file is unrestricted, regardless of whether it is legally a derivative 263 | work. (Executables containing this object code plus portions of the 264 | Library will still fall under Section 6.) 265 | 266 | Otherwise, if the work is a derivative of the Library, you may 267 | distribute the object code for the work under the terms of Section 6. 268 | Any executables containing that work also fall under Section 6, 269 | whether or not they are linked directly with the Library itself. 270 | 271 | 6. As an exception to the Sections above, you may also combine or 272 | link a "work that uses the Library" with the Library to produce a 273 | work containing portions of the Library, and distribute that work 274 | under terms of your choice, provided that the terms permit 275 | modification of the work for the customer's own use and reverse 276 | engineering for debugging such modifications. 277 | 278 | You must give prominent notice with each copy of the work that the 279 | Library is used in it and that the Library and its use are covered by 280 | this License. You must supply a copy of this License. If the work 281 | during execution displays copyright notices, you must include the 282 | copyright notice for the Library among them, as well as a reference 283 | directing the user to the copy of this License. Also, you must do one 284 | of these things: 285 | 286 | a) Accompany the work with the complete corresponding 287 | machine-readable source code for the Library including whatever 288 | changes were used in the work (which must be distributed under 289 | Sections 1 and 2 above); and, if the work is an executable linked 290 | with the Library, with the complete machine-readable "work that 291 | uses the Library", as object code and/or source code, so that the 292 | user can modify the Library and then relink to produce a modified 293 | executable containing the modified Library. (It is understood 294 | that the user who changes the contents of definitions files in the 295 | Library will not necessarily be able to recompile the application 296 | to use the modified definitions.) 297 | 298 | b) Use a suitable shared library mechanism for linking with the 299 | Library. A suitable mechanism is one that (1) uses at run time a 300 | copy of the library already present on the user's computer system, 301 | rather than copying library functions into the executable, and (2) 302 | will operate properly with a modified version of the library, if 303 | the user installs one, as long as the modified version is 304 | interface-compatible with the version that the work was made with. 305 | 306 | c) Accompany the work with a written offer, valid for at 307 | least three years, to give the same user the materials 308 | specified in Subsection 6a, above, for a charge no more 309 | than the cost of performing this distribution. 310 | 311 | d) If distribution of the work is made by offering access to copy 312 | from a designated place, offer equivalent access to copy the above 313 | specified materials from the same place. 314 | 315 | e) Verify that the user has already received a copy of these 316 | materials or that you have already sent this user a copy. 317 | 318 | For an executable, the required form of the "work that uses the 319 | Library" must include any data and utility programs needed for 320 | reproducing the executable from it. However, as a special exception, 321 | the materials to be distributed need not include anything that is 322 | normally distributed (in either source or binary form) with the major 323 | components (compiler, kernel, and so on) of the operating system on 324 | which the executable runs, unless that component itself accompanies 325 | the executable. 326 | 327 | It may happen that this requirement contradicts the license 328 | restrictions of other proprietary libraries that do not normally 329 | accompany the operating system. Such a contradiction means you cannot 330 | use both them and the Library together in an executable that you 331 | distribute. 332 | 333 | 7. You may place library facilities that are a work based on the 334 | Library side-by-side in a single library together with other library 335 | facilities not covered by this License, and distribute such a combined 336 | library, provided that the separate distribution of the work based on 337 | the Library and of the other library facilities is otherwise 338 | permitted, and provided that you do these two things: 339 | 340 | a) Accompany the combined library with a copy of the same work 341 | based on the Library, uncombined with any other library 342 | facilities. This must be distributed under the terms of the 343 | Sections above. 344 | 345 | b) Give prominent notice with the combined library of the fact 346 | that part of it is a work based on the Library, and explaining 347 | where to find the accompanying uncombined form of the same work. 348 | 349 | 8. You may not copy, modify, sublicense, link with, or distribute 350 | the Library except as expressly provided under this License. Any 351 | attempt otherwise to copy, modify, sublicense, link with, or 352 | distribute the Library is void, and will automatically terminate your 353 | rights under this License. However, parties who have received copies, 354 | or rights, from you under this License will not have their licenses 355 | terminated so long as such parties remain in full compliance. 356 | 357 | 9. You are not required to accept this License, since you have not 358 | signed it. However, nothing else grants you permission to modify or 359 | distribute the Library or its derivative works. These actions are 360 | prohibited by law if you do not accept this License. Therefore, by 361 | modifying or distributing the Library (or any work based on the 362 | Library), you indicate your acceptance of this License to do so, and 363 | all its terms and conditions for copying, distributing or modifying 364 | the Library or works based on it. 365 | 366 | 10. Each time you redistribute the Library (or any work based on the 367 | Library), the recipient automatically receives a license from the 368 | original licensor to copy, distribute, link with or modify the Library 369 | subject to these terms and conditions. You may not impose any further 370 | restrictions on the recipients' exercise of the rights granted herein. 371 | You are not responsible for enforcing compliance by third parties with 372 | this License. 373 | 374 | 11. If, as a consequence of a court judgment or allegation of patent 375 | infringement or for any other reason (not limited to patent issues), 376 | conditions are imposed on you (whether by court order, agreement or 377 | otherwise) that contradict the conditions of this License, they do not 378 | excuse you from the conditions of this License. If you cannot 379 | distribute so as to satisfy simultaneously your obligations under this 380 | License and any other pertinent obligations, then as a consequence you 381 | may not distribute the Library at all. For example, if a patent 382 | license would not permit royalty-free redistribution of the Library by 383 | all those who receive copies directly or indirectly through you, then 384 | the only way you could satisfy both it and this License would be to 385 | refrain entirely from distribution of the Library. 386 | 387 | If any portion of this section is held invalid or unenforceable under any 388 | particular circumstance, the balance of the section is intended to apply, 389 | and the section as a whole is intended to apply in other circumstances. 390 | 391 | It is not the purpose of this section to induce you to infringe any 392 | patents or other property right claims or to contest validity of any 393 | such claims; this section has the sole purpose of protecting the 394 | integrity of the free software distribution system which is 395 | implemented by public license practices. Many people have made 396 | generous contributions to the wide range of software distributed 397 | through that system in reliance on consistent application of that 398 | system; it is up to the author/donor to decide if he or she is willing 399 | to distribute software through any other system and a licensee cannot 400 | impose that choice. 401 | 402 | This section is intended to make thoroughly clear what is believed to 403 | be a consequence of the rest of this License. 404 | 405 | 12. If the distribution and/or use of the Library is restricted in 406 | certain countries either by patents or by copyrighted interfaces, the 407 | original copyright holder who places the Library under this License may add 408 | an explicit geographical distribution limitation excluding those countries, 409 | so that distribution is permitted only in or among countries not thus 410 | excluded. In such case, this License incorporates the limitation as if 411 | written in the body of this License. 412 | 413 | 13. The Free Software Foundation may publish revised and/or new 414 | versions of the Lesser General Public License from time to time. 415 | Such new versions will be similar in spirit to the present version, 416 | but may differ in detail to address new problems or concerns. 417 | 418 | Each version is given a distinguishing version number. If the Library 419 | specifies a version number of this License which applies to it and 420 | "any later version", you have the option of following the terms and 421 | conditions either of that version or of any later version published by 422 | the Free Software Foundation. If the Library does not specify a 423 | license version number, you may choose any version ever published by 424 | the Free Software Foundation. 425 | 426 | 14. If you wish to incorporate parts of the Library into other free 427 | programs whose distribution conditions are incompatible with these, 428 | write to the author to ask for permission. For software which is 429 | copyrighted by the Free Software Foundation, write to the Free 430 | Software Foundation; we sometimes make exceptions for this. Our 431 | decision will be guided by the two goals of preserving the free status 432 | of all derivatives of our free software and of promoting the sharing 433 | and reuse of software generally. 434 | 435 | NO WARRANTY 436 | 437 | 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO 438 | WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. 439 | EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR 440 | OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY 441 | KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE 442 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 443 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE 444 | LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME 445 | THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 446 | 447 | 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN 448 | WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY 449 | AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU 450 | FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR 451 | CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE 452 | LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING 453 | RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A 454 | FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF 455 | SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 456 | DAMAGES. 457 | 458 | END OF TERMS AND CONDITIONS 459 | 460 | How to Apply These Terms to Your New Libraries 461 | 462 | If you develop a new library, and you want it to be of the greatest 463 | possible use to the public, we recommend making it free software that 464 | everyone can redistribute and change. You can do so by permitting 465 | redistribution under these terms (or, alternatively, under the terms of the 466 | ordinary General Public License). 467 | 468 | To apply these terms, attach the following notices to the library. It is 469 | safest to attach them to the start of each source file to most effectively 470 | convey the exclusion of warranty; and each file should have at least the 471 | "copyright" line and a pointer to where the full notice is found. 472 | 473 | 474 | Copyright (C) 475 | 476 | This library is free software; you can redistribute it and/or 477 | modify it under the terms of the GNU Lesser General Public 478 | License as published by the Free Software Foundation; either 479 | version 2.1 of the License, or (at your option) any later version. 480 | 481 | This library is distributed in the hope that it will be useful, 482 | but WITHOUT ANY WARRANTY; without even the implied warranty of 483 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 484 | Lesser General Public License for more details. 485 | 486 | You should have received a copy of the GNU Lesser General Public 487 | License along with this library; if not, write to the Free Software 488 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 489 | 490 | Also add information on how to contact you by electronic and paper mail. 491 | 492 | You should also get your employer (if you work as a programmer) or your 493 | school, if any, to sign a "copyright disclaimer" for the library, if 494 | necessary. Here is a sample; alter the names: 495 | 496 | Yoyodyne, Inc., hereby disclaims all copyright interest in the 497 | library `Frob' (a library for tweaking knobs) written by James Random Hacker. 498 | 499 | , 1 April 1990 500 | Ty Coon, President of Vice 501 | 502 | That's all there is to it! 503 | -------------------------------------------------------------------------------- /.licenses/libirecovery_COPYING: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 2.1, February 1999 3 | 4 | Copyright (C) 1991, 1999 Free Software Foundation, Inc. 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | [This is the first released version of the Lesser GPL. It also counts 10 | as the successor of the GNU Library Public License, version 2, hence 11 | the version number 2.1.] 12 | 13 | Preamble 14 | 15 | The licenses for most software are designed to take away your 16 | freedom to share and change it. By contrast, the GNU General Public 17 | Licenses are intended to guarantee your freedom to share and change 18 | free software--to make sure the software is free for all its users. 19 | 20 | This license, the Lesser General Public License, applies to some 21 | specially designated software packages--typically libraries--of the 22 | Free Software Foundation and other authors who decide to use it. You 23 | can use it too, but we suggest you first think carefully about whether 24 | this license or the ordinary General Public License is the better 25 | strategy to use in any particular case, based on the explanations below. 26 | 27 | When we speak of free software, we are referring to freedom of use, 28 | not price. Our General Public Licenses are designed to make sure that 29 | you have the freedom to distribute copies of free software (and charge 30 | for this service if you wish); that you receive source code or can get 31 | it if you want it; that you can change the software and use pieces of 32 | it in new free programs; and that you are informed that you can do 33 | these things. 34 | 35 | To protect your rights, we need to make restrictions that forbid 36 | distributors to deny you these rights or to ask you to surrender these 37 | rights. These restrictions translate to certain responsibilities for 38 | you if you distribute copies of the library or if you modify it. 39 | 40 | For example, if you distribute copies of the library, whether gratis 41 | or for a fee, you must give the recipients all the rights that we gave 42 | you. You must make sure that they, too, receive or can get the source 43 | code. If you link other code with the library, you must provide 44 | complete object files to the recipients, so that they can relink them 45 | with the library after making changes to the library and recompiling 46 | it. And you must show them these terms so they know their rights. 47 | 48 | We protect your rights with a two-step method: (1) we copyright the 49 | library, and (2) we offer you this license, which gives you legal 50 | permission to copy, distribute and/or modify the library. 51 | 52 | To protect each distributor, we want to make it very clear that 53 | there is no warranty for the free library. Also, if the library is 54 | modified by someone else and passed on, the recipients should know 55 | that what they have is not the original version, so that the original 56 | author's reputation will not be affected by problems that might be 57 | introduced by others. 58 | 59 | Finally, software patents pose a constant threat to the existence of 60 | any free program. We wish to make sure that a company cannot 61 | effectively restrict the users of a free program by obtaining a 62 | restrictive license from a patent holder. Therefore, we insist that 63 | any patent license obtained for a version of the library must be 64 | consistent with the full freedom of use specified in this license. 65 | 66 | Most GNU software, including some libraries, is covered by the 67 | ordinary GNU General Public License. This license, the GNU Lesser 68 | General Public License, applies to certain designated libraries, and 69 | is quite different from the ordinary General Public License. We use 70 | this license for certain libraries in order to permit linking those 71 | libraries into non-free programs. 72 | 73 | When a program is linked with a library, whether statically or using 74 | a shared library, the combination of the two is legally speaking a 75 | combined work, a derivative of the original library. The ordinary 76 | General Public License therefore permits such linking only if the 77 | entire combination fits its criteria of freedom. The Lesser General 78 | Public License permits more lax criteria for linking other code with 79 | the library. 80 | 81 | We call this license the "Lesser" General Public License because it 82 | does Less to protect the user's freedom than the ordinary General 83 | Public License. It also provides other free software developers Less 84 | of an advantage over competing non-free programs. These disadvantages 85 | are the reason we use the ordinary General Public License for many 86 | libraries. However, the Lesser license provides advantages in certain 87 | special circumstances. 88 | 89 | For example, on rare occasions, there may be a special need to 90 | encourage the widest possible use of a certain library, so that it becomes 91 | a de-facto standard. To achieve this, non-free programs must be 92 | allowed to use the library. A more frequent case is that a free 93 | library does the same job as widely used non-free libraries. In this 94 | case, there is little to gain by limiting the free library to free 95 | software only, so we use the Lesser General Public License. 96 | 97 | In other cases, permission to use a particular library in non-free 98 | programs enables a greater number of people to use a large body of 99 | free software. For example, permission to use the GNU C Library in 100 | non-free programs enables many more people to use the whole GNU 101 | operating system, as well as its variant, the GNU/Linux operating 102 | system. 103 | 104 | Although the Lesser General Public License is Less protective of the 105 | users' freedom, it does ensure that the user of a program that is 106 | linked with the Library has the freedom and the wherewithal to run 107 | that program using a modified version of the Library. 108 | 109 | The precise terms and conditions for copying, distribution and 110 | modification follow. Pay close attention to the difference between a 111 | "work based on the library" and a "work that uses the library". The 112 | former contains code derived from the library, whereas the latter must 113 | be combined with the library in order to run. 114 | 115 | GNU LESSER GENERAL PUBLIC LICENSE 116 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 117 | 118 | 0. This License Agreement applies to any software library or other 119 | program which contains a notice placed by the copyright holder or 120 | other authorized party saying it may be distributed under the terms of 121 | this Lesser General Public License (also called "this License"). 122 | Each licensee is addressed as "you". 123 | 124 | A "library" means a collection of software functions and/or data 125 | prepared so as to be conveniently linked with application programs 126 | (which use some of those functions and data) to form executables. 127 | 128 | The "Library", below, refers to any such software library or work 129 | which has been distributed under these terms. A "work based on the 130 | Library" means either the Library or any derivative work under 131 | copyright law: that is to say, a work containing the Library or a 132 | portion of it, either verbatim or with modifications and/or translated 133 | straightforwardly into another language. (Hereinafter, translation is 134 | included without limitation in the term "modification".) 135 | 136 | "Source code" for a work means the preferred form of the work for 137 | making modifications to it. For a library, complete source code means 138 | all the source code for all modules it contains, plus any associated 139 | interface definition files, plus the scripts used to control compilation 140 | and installation of the library. 141 | 142 | Activities other than copying, distribution and modification are not 143 | covered by this License; they are outside its scope. The act of 144 | running a program using the Library is not restricted, and output from 145 | such a program is covered only if its contents constitute a work based 146 | on the Library (independent of the use of the Library in a tool for 147 | writing it). Whether that is true depends on what the Library does 148 | and what the program that uses the Library does. 149 | 150 | 1. You may copy and distribute verbatim copies of the Library's 151 | complete source code as you receive it, in any medium, provided that 152 | you conspicuously and appropriately publish on each copy an 153 | appropriate copyright notice and disclaimer of warranty; keep intact 154 | all the notices that refer to this License and to the absence of any 155 | warranty; and distribute a copy of this License along with the 156 | Library. 157 | 158 | You may charge a fee for the physical act of transferring a copy, 159 | and you may at your option offer warranty protection in exchange for a 160 | fee. 161 | 162 | 2. You may modify your copy or copies of the Library or any portion 163 | of it, thus forming a work based on the Library, and copy and 164 | distribute such modifications or work under the terms of Section 1 165 | above, provided that you also meet all of these conditions: 166 | 167 | a) The modified work must itself be a software library. 168 | 169 | b) You must cause the files modified to carry prominent notices 170 | stating that you changed the files and the date of any change. 171 | 172 | c) You must cause the whole of the work to be licensed at no 173 | charge to all third parties under the terms of this License. 174 | 175 | d) If a facility in the modified Library refers to a function or a 176 | table of data to be supplied by an application program that uses 177 | the facility, other than as an argument passed when the facility 178 | is invoked, then you must make a good faith effort to ensure that, 179 | in the event an application does not supply such function or 180 | table, the facility still operates, and performs whatever part of 181 | its purpose remains meaningful. 182 | 183 | (For example, a function in a library to compute square roots has 184 | a purpose that is entirely well-defined independent of the 185 | application. Therefore, Subsection 2d requires that any 186 | application-supplied function or table used by this function must 187 | be optional: if the application does not supply it, the square 188 | root function must still compute square roots.) 189 | 190 | These requirements apply to the modified work as a whole. If 191 | identifiable sections of that work are not derived from the Library, 192 | and can be reasonably considered independent and separate works in 193 | themselves, then this License, and its terms, do not apply to those 194 | sections when you distribute them as separate works. But when you 195 | distribute the same sections as part of a whole which is a work based 196 | on the Library, the distribution of the whole must be on the terms of 197 | this License, whose permissions for other licensees extend to the 198 | entire whole, and thus to each and every part regardless of who wrote 199 | it. 200 | 201 | Thus, it is not the intent of this section to claim rights or contest 202 | your rights to work written entirely by you; rather, the intent is to 203 | exercise the right to control the distribution of derivative or 204 | collective works based on the Library. 205 | 206 | In addition, mere aggregation of another work not based on the Library 207 | with the Library (or with a work based on the Library) on a volume of 208 | a storage or distribution medium does not bring the other work under 209 | the scope of this License. 210 | 211 | 3. You may opt to apply the terms of the ordinary GNU General Public 212 | License instead of this License to a given copy of the Library. To do 213 | this, you must alter all the notices that refer to this License, so 214 | that they refer to the ordinary GNU General Public License, version 2, 215 | instead of to this License. (If a newer version than version 2 of the 216 | ordinary GNU General Public License has appeared, then you can specify 217 | that version instead if you wish.) Do not make any other change in 218 | these notices. 219 | 220 | Once this change is made in a given copy, it is irreversible for 221 | that copy, so the ordinary GNU General Public License applies to all 222 | subsequent copies and derivative works made from that copy. 223 | 224 | This option is useful when you wish to copy part of the code of 225 | the Library into a program that is not a library. 226 | 227 | 4. You may copy and distribute the Library (or a portion or 228 | derivative of it, under Section 2) in object code or executable form 229 | under the terms of Sections 1 and 2 above provided that you accompany 230 | it with the complete corresponding machine-readable source code, which 231 | must be distributed under the terms of Sections 1 and 2 above on a 232 | medium customarily used for software interchange. 233 | 234 | If distribution of object code is made by offering access to copy 235 | from a designated place, then offering equivalent access to copy the 236 | source code from the same place satisfies the requirement to 237 | distribute the source code, even though third parties are not 238 | compelled to copy the source along with the object code. 239 | 240 | 5. A program that contains no derivative of any portion of the 241 | Library, but is designed to work with the Library by being compiled or 242 | linked with it, is called a "work that uses the Library". Such a 243 | work, in isolation, is not a derivative work of the Library, and 244 | therefore falls outside the scope of this License. 245 | 246 | However, linking a "work that uses the Library" with the Library 247 | creates an executable that is a derivative of the Library (because it 248 | contains portions of the Library), rather than a "work that uses the 249 | library". The executable is therefore covered by this License. 250 | Section 6 states terms for distribution of such executables. 251 | 252 | When a "work that uses the Library" uses material from a header file 253 | that is part of the Library, the object code for the work may be a 254 | derivative work of the Library even though the source code is not. 255 | Whether this is true is especially significant if the work can be 256 | linked without the Library, or if the work is itself a library. The 257 | threshold for this to be true is not precisely defined by law. 258 | 259 | If such an object file uses only numerical parameters, data 260 | structure layouts and accessors, and small macros and small inline 261 | functions (ten lines or less in length), then the use of the object 262 | file is unrestricted, regardless of whether it is legally a derivative 263 | work. (Executables containing this object code plus portions of the 264 | Library will still fall under Section 6.) 265 | 266 | Otherwise, if the work is a derivative of the Library, you may 267 | distribute the object code for the work under the terms of Section 6. 268 | Any executables containing that work also fall under Section 6, 269 | whether or not they are linked directly with the Library itself. 270 | 271 | 6. As an exception to the Sections above, you may also combine or 272 | link a "work that uses the Library" with the Library to produce a 273 | work containing portions of the Library, and distribute that work 274 | under terms of your choice, provided that the terms permit 275 | modification of the work for the customer's own use and reverse 276 | engineering for debugging such modifications. 277 | 278 | You must give prominent notice with each copy of the work that the 279 | Library is used in it and that the Library and its use are covered by 280 | this License. You must supply a copy of this License. If the work 281 | during execution displays copyright notices, you must include the 282 | copyright notice for the Library among them, as well as a reference 283 | directing the user to the copy of this License. Also, you must do one 284 | of these things: 285 | 286 | a) Accompany the work with the complete corresponding 287 | machine-readable source code for the Library including whatever 288 | changes were used in the work (which must be distributed under 289 | Sections 1 and 2 above); and, if the work is an executable linked 290 | with the Library, with the complete machine-readable "work that 291 | uses the Library", as object code and/or source code, so that the 292 | user can modify the Library and then relink to produce a modified 293 | executable containing the modified Library. (It is understood 294 | that the user who changes the contents of definitions files in the 295 | Library will not necessarily be able to recompile the application 296 | to use the modified definitions.) 297 | 298 | b) Use a suitable shared library mechanism for linking with the 299 | Library. A suitable mechanism is one that (1) uses at run time a 300 | copy of the library already present on the user's computer system, 301 | rather than copying library functions into the executable, and (2) 302 | will operate properly with a modified version of the library, if 303 | the user installs one, as long as the modified version is 304 | interface-compatible with the version that the work was made with. 305 | 306 | c) Accompany the work with a written offer, valid for at 307 | least three years, to give the same user the materials 308 | specified in Subsection 6a, above, for a charge no more 309 | than the cost of performing this distribution. 310 | 311 | d) If distribution of the work is made by offering access to copy 312 | from a designated place, offer equivalent access to copy the above 313 | specified materials from the same place. 314 | 315 | e) Verify that the user has already received a copy of these 316 | materials or that you have already sent this user a copy. 317 | 318 | For an executable, the required form of the "work that uses the 319 | Library" must include any data and utility programs needed for 320 | reproducing the executable from it. However, as a special exception, 321 | the materials to be distributed need not include anything that is 322 | normally distributed (in either source or binary form) with the major 323 | components (compiler, kernel, and so on) of the operating system on 324 | which the executable runs, unless that component itself accompanies 325 | the executable. 326 | 327 | It may happen that this requirement contradicts the license 328 | restrictions of other proprietary libraries that do not normally 329 | accompany the operating system. Such a contradiction means you cannot 330 | use both them and the Library together in an executable that you 331 | distribute. 332 | 333 | 7. You may place library facilities that are a work based on the 334 | Library side-by-side in a single library together with other library 335 | facilities not covered by this License, and distribute such a combined 336 | library, provided that the separate distribution of the work based on 337 | the Library and of the other library facilities is otherwise 338 | permitted, and provided that you do these two things: 339 | 340 | a) Accompany the combined library with a copy of the same work 341 | based on the Library, uncombined with any other library 342 | facilities. This must be distributed under the terms of the 343 | Sections above. 344 | 345 | b) Give prominent notice with the combined library of the fact 346 | that part of it is a work based on the Library, and explaining 347 | where to find the accompanying uncombined form of the same work. 348 | 349 | 8. You may not copy, modify, sublicense, link with, or distribute 350 | the Library except as expressly provided under this License. Any 351 | attempt otherwise to copy, modify, sublicense, link with, or 352 | distribute the Library is void, and will automatically terminate your 353 | rights under this License. However, parties who have received copies, 354 | or rights, from you under this License will not have their licenses 355 | terminated so long as such parties remain in full compliance. 356 | 357 | 9. You are not required to accept this License, since you have not 358 | signed it. However, nothing else grants you permission to modify or 359 | distribute the Library or its derivative works. These actions are 360 | prohibited by law if you do not accept this License. Therefore, by 361 | modifying or distributing the Library (or any work based on the 362 | Library), you indicate your acceptance of this License to do so, and 363 | all its terms and conditions for copying, distributing or modifying 364 | the Library or works based on it. 365 | 366 | 10. Each time you redistribute the Library (or any work based on the 367 | Library), the recipient automatically receives a license from the 368 | original licensor to copy, distribute, link with or modify the Library 369 | subject to these terms and conditions. You may not impose any further 370 | restrictions on the recipients' exercise of the rights granted herein. 371 | You are not responsible for enforcing compliance by third parties with 372 | this License. 373 | 374 | 11. If, as a consequence of a court judgment or allegation of patent 375 | infringement or for any other reason (not limited to patent issues), 376 | conditions are imposed on you (whether by court order, agreement or 377 | otherwise) that contradict the conditions of this License, they do not 378 | excuse you from the conditions of this License. If you cannot 379 | distribute so as to satisfy simultaneously your obligations under this 380 | License and any other pertinent obligations, then as a consequence you 381 | may not distribute the Library at all. For example, if a patent 382 | license would not permit royalty-free redistribution of the Library by 383 | all those who receive copies directly or indirectly through you, then 384 | the only way you could satisfy both it and this License would be to 385 | refrain entirely from distribution of the Library. 386 | 387 | If any portion of this section is held invalid or unenforceable under any 388 | particular circumstance, the balance of the section is intended to apply, 389 | and the section as a whole is intended to apply in other circumstances. 390 | 391 | It is not the purpose of this section to induce you to infringe any 392 | patents or other property right claims or to contest validity of any 393 | such claims; this section has the sole purpose of protecting the 394 | integrity of the free software distribution system which is 395 | implemented by public license practices. Many people have made 396 | generous contributions to the wide range of software distributed 397 | through that system in reliance on consistent application of that 398 | system; it is up to the author/donor to decide if he or she is willing 399 | to distribute software through any other system and a licensee cannot 400 | impose that choice. 401 | 402 | This section is intended to make thoroughly clear what is believed to 403 | be a consequence of the rest of this License. 404 | 405 | 12. If the distribution and/or use of the Library is restricted in 406 | certain countries either by patents or by copyrighted interfaces, the 407 | original copyright holder who places the Library under this License may add 408 | an explicit geographical distribution limitation excluding those countries, 409 | so that distribution is permitted only in or among countries not thus 410 | excluded. In such case, this License incorporates the limitation as if 411 | written in the body of this License. 412 | 413 | 13. The Free Software Foundation may publish revised and/or new 414 | versions of the Lesser General Public License from time to time. 415 | Such new versions will be similar in spirit to the present version, 416 | but may differ in detail to address new problems or concerns. 417 | 418 | Each version is given a distinguishing version number. If the Library 419 | specifies a version number of this License which applies to it and 420 | "any later version", you have the option of following the terms and 421 | conditions either of that version or of any later version published by 422 | the Free Software Foundation. If the Library does not specify a 423 | license version number, you may choose any version ever published by 424 | the Free Software Foundation. 425 | 426 | 14. If you wish to incorporate parts of the Library into other free 427 | programs whose distribution conditions are incompatible with these, 428 | write to the author to ask for permission. For software which is 429 | copyrighted by the Free Software Foundation, write to the Free 430 | Software Foundation; we sometimes make exceptions for this. Our 431 | decision will be guided by the two goals of preserving the free status 432 | of all derivatives of our free software and of promoting the sharing 433 | and reuse of software generally. 434 | 435 | NO WARRANTY 436 | 437 | 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO 438 | WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. 439 | EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR 440 | OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY 441 | KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE 442 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 443 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE 444 | LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME 445 | THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 446 | 447 | 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN 448 | WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY 449 | AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU 450 | FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR 451 | CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE 452 | LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING 453 | RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A 454 | FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF 455 | SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 456 | DAMAGES. 457 | 458 | END OF TERMS AND CONDITIONS 459 | 460 | How to Apply These Terms to Your New Libraries 461 | 462 | If you develop a new library, and you want it to be of the greatest 463 | possible use to the public, we recommend making it free software that 464 | everyone can redistribute and change. You can do so by permitting 465 | redistribution under these terms (or, alternatively, under the terms of the 466 | ordinary General Public License). 467 | 468 | To apply these terms, attach the following notices to the library. It is 469 | safest to attach them to the start of each source file to most effectively 470 | convey the exclusion of warranty; and each file should have at least the 471 | "copyright" line and a pointer to where the full notice is found. 472 | 473 | 474 | Copyright (C) 475 | 476 | This library is free software; you can redistribute it and/or 477 | modify it under the terms of the GNU Lesser General Public 478 | License as published by the Free Software Foundation; either 479 | version 2.1 of the License, or (at your option) any later version. 480 | 481 | This library is distributed in the hope that it will be useful, 482 | but WITHOUT ANY WARRANTY; without even the implied warranty of 483 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 484 | Lesser General Public License for more details. 485 | 486 | You should have received a copy of the GNU Lesser General Public 487 | License along with this library; if not, write to the Free Software 488 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 489 | 490 | Also add information on how to contact you by electronic and paper mail. 491 | 492 | You should also get your employer (if you work as a programmer) or your 493 | school, if any, to sign a "copyright disclaimer" for the library, if 494 | necessary. Here is a sample; alter the names: 495 | 496 | Yoyodyne, Inc., hereby disclaims all copyright interest in the 497 | library `Frob' (a library for tweaking knobs) written by James Random Hacker. 498 | 499 | , 1 April 1990 500 | Ty Coon, President of Vice 501 | 502 | That's all there is to it! -------------------------------------------------------------------------------- /.licenses/partialZipBrowser_LICENSE: -------------------------------------------------------------------------------- 1 | GNU LESSER GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | 9 | This version of the GNU Lesser General Public License incorporates 10 | the terms and conditions of version 3 of the GNU General Public 11 | License, supplemented by the additional permissions listed below. 12 | 13 | 0. Additional Definitions. 14 | 15 | As used herein, "this License" refers to version 3 of the GNU Lesser 16 | General Public License, and the "GNU GPL" refers to version 3 of the GNU 17 | General Public License. 18 | 19 | "The Library" refers to a covered work governed by this License, 20 | other than an Application or a Combined Work as defined below. 21 | 22 | An "Application" is any work that makes use of an interface provided 23 | by the Library, but which is not otherwise based on the Library. 24 | Defining a subclass of a class defined by the Library is deemed a mode 25 | of using an interface provided by the Library. 26 | 27 | A "Combined Work" is a work produced by combining or linking an 28 | Application with the Library. The particular version of the Library 29 | with which the Combined Work was made is also called the "Linked 30 | Version". 31 | 32 | The "Minimal Corresponding Source" for a Combined Work means the 33 | Corresponding Source for the Combined Work, excluding any source code 34 | for portions of the Combined Work that, considered in isolation, are 35 | based on the Application, and not on the Linked Version. 36 | 37 | The "Corresponding Application Code" for a Combined Work means the 38 | object code and/or source code for the Application, including any data 39 | and utility programs needed for reproducing the Combined Work from the 40 | Application, but excluding the System Libraries of the Combined Work. 41 | 42 | 1. Exception to Section 3 of the GNU GPL. 43 | 44 | You may convey a covered work under sections 3 and 4 of this License 45 | without being bound by section 3 of the GNU GPL. 46 | 47 | 2. Conveying Modified Versions. 48 | 49 | If you modify a copy of the Library, and, in your modifications, a 50 | facility refers to a function or data to be supplied by an Application 51 | that uses the facility (other than as an argument passed when the 52 | facility is invoked), then you may convey a copy of the modified 53 | version: 54 | 55 | a) under this License, provided that you make a good faith effort to 56 | ensure that, in the event an Application does not supply the 57 | function or data, the facility still operates, and performs 58 | whatever part of its purpose remains meaningful, or 59 | 60 | b) under the GNU GPL, with none of the additional permissions of 61 | this License applicable to that copy. 62 | 63 | 3. Object Code Incorporating Material from Library Header Files. 64 | 65 | The object code form of an Application may incorporate material from 66 | a header file that is part of the Library. You may convey such object 67 | code under terms of your choice, provided that, if the incorporated 68 | material is not limited to numerical parameters, data structure 69 | layouts and accessors, or small macros, inline functions and templates 70 | (ten or fewer lines in length), you do both of the following: 71 | 72 | a) Give prominent notice with each copy of the object code that the 73 | Library is used in it and that the Library and its use are 74 | covered by this License. 75 | 76 | b) Accompany the object code with a copy of the GNU GPL and this license 77 | document. 78 | 79 | 4. Combined Works. 80 | 81 | You may convey a Combined Work under terms of your choice that, 82 | taken together, effectively do not restrict modification of the 83 | portions of the Library contained in the Combined Work and reverse 84 | engineering for debugging such modifications, if you also do each of 85 | the following: 86 | 87 | a) Give prominent notice with each copy of the Combined Work that 88 | the Library is used in it and that the Library and its use are 89 | covered by this License. 90 | 91 | b) Accompany the Combined Work with a copy of the GNU GPL and this license 92 | document. 93 | 94 | c) For a Combined Work that displays copyright notices during 95 | execution, include the copyright notice for the Library among 96 | these notices, as well as a reference directing the user to the 97 | copies of the GNU GPL and this license document. 98 | 99 | d) Do one of the following: 100 | 101 | 0) Convey the Minimal Corresponding Source under the terms of this 102 | License, and the Corresponding Application Code in a form 103 | suitable for, and under terms that permit, the user to 104 | recombine or relink the Application with a modified version of 105 | the Linked Version to produce a modified Combined Work, in the 106 | manner specified by section 6 of the GNU GPL for conveying 107 | Corresponding Source. 108 | 109 | 1) Use a suitable shared library mechanism for linking with the 110 | Library. A suitable mechanism is one that (a) uses at run time 111 | a copy of the Library already present on the user's computer 112 | system, and (b) will operate properly with a modified version 113 | of the Library that is interface-compatible with the Linked 114 | Version. 115 | 116 | e) Provide Installation Information, but only if you would otherwise 117 | be required to provide such information under section 6 of the 118 | GNU GPL, and only to the extent that such information is 119 | necessary to install and execute a modified version of the 120 | Combined Work produced by recombining or relinking the 121 | Application with a modified version of the Linked Version. (If 122 | you use option 4d0, the Installation Information must accompany 123 | the Minimal Corresponding Source and Corresponding Application 124 | Code. If you use option 4d1, you must provide the Installation 125 | Information in the manner specified by section 6 of the GNU GPL 126 | for conveying Corresponding Source.) 127 | 128 | 5. Combined Libraries. 129 | 130 | You may place library facilities that are a work based on the 131 | Library side by side in a single library together with other library 132 | facilities that are not Applications and are not covered by this 133 | License, and convey such a combined library under terms of your 134 | choice, if you do both of the following: 135 | 136 | a) Accompany the combined library with a copy of the same work based 137 | on the Library, uncombined with any other library facilities, 138 | conveyed under the terms of this License. 139 | 140 | b) Give prominent notice with the combined library that part of it 141 | is a work based on the Library, and explaining where to find the 142 | accompanying uncombined form of the same work. 143 | 144 | 6. Revised Versions of the GNU Lesser General Public License. 145 | 146 | The Free Software Foundation may publish revised and/or new versions 147 | of the GNU Lesser General Public License from time to time. Such new 148 | versions will be similar in spirit to the present version, but may 149 | differ in detail to address new problems or concerns. 150 | 151 | Each version is given a distinguishing version number. If the 152 | Library as you received it specifies that a certain numbered version 153 | of the GNU Lesser General Public License "or any later version" 154 | applies to it, you have the option of following the terms and 155 | conditions either of that published version or of any later version 156 | published by the Free Software Foundation. If the Library as you 157 | received it does not specify a version number of the GNU Lesser 158 | General Public License, you may choose any version of the GNU Lesser 159 | General Public License ever published by the Free Software Foundation. 160 | 161 | If the Library as you received it specifies that a proxy can decide 162 | whether future versions of the GNU Lesser General Public License shall 163 | apply, that proxy's public statement of acceptance of any version is 164 | permanent authorization for you to choose that version for the 165 | Library. 166 | -------------------------------------------------------------------------------- /.licenses/sshpass_LICENSE: -------------------------------------------------------------------------------- 1 | sshpass was written by Shachar Shemesh for Lingnu Open Source Consulting Ltd. 2 | 3 | This program is free software; you can redistribute it and/or 4 | modify it under the terms of the GNU General Public License 5 | as published by the Free Software Foundation; either version 2 6 | of the License, or (at your option) any later version. 7 | 8 | This program is distributed in the hope that it will be useful, 9 | but WITHOUT ANY WARRANTY; without even the implied warranty of 10 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 | GNU General Public License for more details. 12 | 13 | You should have received a copy of the GNU General Public License 14 | along with this program; if not, write to the Free Software 15 | Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 16 | -------------------------------------------------------------------------------- /.licenses/xcbuild_LICENSE: -------------------------------------------------------------------------------- 1 | BSD License 2 | 3 | For xcbuild software 4 | 5 | Copyright (c) 2015, Facebook, Inc. All rights reserved. 6 | 7 | Redistribution and use in source and binary forms, with or without modification, 8 | are permitted provided that the following conditions are met: 9 | 10 | * Redistributions of source code must retain the above copyright notice, this 11 | list of conditions and the following disclaimer. 12 | 13 | * Redistributions in binary form must reproduce the above copyright notice, 14 | this list of conditions and the following disclaimer in the documentation 15 | and/or other materials provided with the distribution. 16 | 17 | * Neither the name Facebook nor the names of its contributors may be used to 18 | endorse or promote products derived from this software without specific 19 | prior written permission. 20 | 21 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND 22 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED 23 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 24 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR 25 | ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 26 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 27 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON 28 | ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 29 | (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 30 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 31 | 32 | 33 | ## md5 34 | Copyright (C) 1999, 2002 Aladdin Enterprises. All rights reserved. 35 | 36 | This software is provided 'as-is', without any express or implied 37 | warranty. In no event will the authors be held liable for any damages 38 | arising from the use of this software. 39 | 40 | Permission is granted to anyone to use this software for any purpose, 41 | including commercial applications, and to alter it and redistribute it 42 | freely, subject to the following restrictions: 43 | 44 | 1. The origin of this software must not be misrepresented; you must not 45 | claim that you wrote the original software. If you use this software 46 | in a product, an acknowledgment in the product documentation would be 47 | appreciated but is not required. 48 | 2. Altered source versions must be plainly marked as such, and must not be 49 | misrepresented as being the original software. 50 | 3. This notice may not be removed or altered from any source distribution. 51 | 52 | 53 | ## LLVM 54 | Copyright (c) 2003-2015 University of Illinois at Urbana-Champaign. 55 | All rights reserved. 56 | 57 | Developed by: 58 | 59 | LLVM Team 60 | 61 | University of Illinois at Urbana-Champaign 62 | 63 | http://llvm.org 64 | 65 | Permission is hereby granted, free of charge, to any person obtaining a copy of 66 | this software and associated documentation files (the "Software"), to deal with 67 | the Software without restriction, including without limitation the rights to 68 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies 69 | of the Software, and to permit persons to whom the Software is furnished to do 70 | so, subject to the following conditions: 71 | 72 | * Redistributions of source code must retain the above copyright notice, 73 | this list of conditions and the following disclaimers. 74 | 75 | * Redistributions in binary form must reproduce the above copyright notice, 76 | this list of conditions and the following disclaimers in the 77 | documentation and/or other materials provided with the distribution. 78 | 79 | * Neither the names of the LLVM Team, University of Illinois at 80 | Urbana-Champaign, nor the names of its contributors may be used to 81 | endorse or promote products derived from this Software without specific 82 | prior written permission. 83 | 84 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 85 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 86 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 87 | CONTRIBUTORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 88 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 89 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS WITH THE 90 | SOFTWARE. 91 | 92 | 93 | ## unicode 94 | Copyright (c) 2007 The NetBSD Foundation, Inc. 95 | All rights reserved. 96 | 97 | This code is derived from software contributed to The NetBSD Foundation 98 | by Dieter Baron. 99 | 100 | Redistribution and use in source and binary forms, with or without 101 | modification, are permitted provided that the following conditions 102 | are met: 103 | 1. Redistributions of source code must retain the above copyright 104 | notice, this list of conditions and the following disclaimer. 105 | 2. Redistributions in binary form must reproduce the above copyright 106 | notice, this list of conditions and the following disclaimer in the 107 | documentation and/or other materials provided with the distribution. 108 | 109 | THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS 110 | ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 111 | TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 112 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS 113 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR 114 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF 115 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 116 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN 117 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 118 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 119 | POSSIBILITY OF SUCH DAMAGE. 120 | 121 | 122 | ## osxbom 123 | Initial code 124 | Author: Joseph Coffland 125 | Date: October, 2011 126 | 127 | Additional work on BOMPath & BOMTree 128 | Author: Julian Devlin 129 | Date: October, 2012 130 | 131 | This program is distributed in the hope that it will be useful, 132 | but WITHOUT ANY WARRANTY; without even the implied warranty of 133 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 134 | This program is in the public domain. 135 | 136 | 137 | ## ThemeEngine 138 | Copyright (c) 2014, Alex Zielenski 139 | All rights reserved. 140 | 141 | Redistribution and use in source and binary forms, with or without 142 | modification, are permitted provided that the following conditions are met: 143 | 144 | * Redistributions of source code must retain the above copyright notice, this 145 | list of conditions and the following disclaimer. 146 | 147 | * Redistributions in binary form must reproduce the above copyright notice, 148 | this list of conditions and the following disclaimer in the documentation 149 | and/or other materials provided with the distribution. 150 | 151 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 152 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 153 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 154 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 155 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 156 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 157 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 158 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 159 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 160 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 161 | -------------------------------------------------------------------------------- /Darwin/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/Kernel64Patcher -------------------------------------------------------------------------------- /Darwin/gtar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/gtar -------------------------------------------------------------------------------- /Darwin/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/iBoot64Patcher -------------------------------------------------------------------------------- /Darwin/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/img4 -------------------------------------------------------------------------------- /Darwin/img4tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/img4tool -------------------------------------------------------------------------------- /Darwin/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/iproxy -------------------------------------------------------------------------------- /Darwin/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/irecovery -------------------------------------------------------------------------------- /Darwin/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/jq -------------------------------------------------------------------------------- /Darwin/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/pzb -------------------------------------------------------------------------------- /Darwin/sshpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Darwin/sshpass -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2022, Nathan 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | 3. Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | -------------------------------------------------------------------------------- /Linux/Kernel64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/Kernel64Patcher -------------------------------------------------------------------------------- /Linux/PlistBuddy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/PlistBuddy -------------------------------------------------------------------------------- /Linux/hfsplus: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/hfsplus -------------------------------------------------------------------------------- /Linux/iBoot64Patcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/iBoot64Patcher -------------------------------------------------------------------------------- /Linux/img4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/img4 -------------------------------------------------------------------------------- /Linux/img4tool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/img4tool -------------------------------------------------------------------------------- /Linux/iproxy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/iproxy -------------------------------------------------------------------------------- /Linux/irecovery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/irecovery -------------------------------------------------------------------------------- /Linux/jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/jq -------------------------------------------------------------------------------- /Linux/pzb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/pzb -------------------------------------------------------------------------------- /Linux/sshpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/Linux/sshpass -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

SSH Ramdisk Creator

2 | 3 | 4 |

5 | Create iPhone/iPad OS SSH Ramdisks easily.
6 | Based from verygenericname's SSHRD_Script. 7 |

8 | 9 | --- 10 | 11 | # Prerequisites 12 | 13 | 1. A computer running macOS/linux 14 | 2. Python 3.x 15 | 16 | ### Python Modules 17 | 1. autodecrypt 18 | 2. argsparse 19 | 3. requests 20 | 21 | # Cloning 22 | 23 | 1. Clone and cd into this repository: `git clone https://github.com/Bonkeyzz/SSH_Ramdisk_Creator --recursive && cd SSH_Ramdisk_Creator`. 24 | If you have cloned this before, run `cd SSH_Ramdisk_Creator && git pull` to pull new changes 25 | 2. After being in the repo directory, do `pip install -r requirements.txt` 26 | 27 | # Usage 28 | ```shell 29 | usage: create_ssh_ramdisk.py [-h] --decrypt-mode DECRYPT_MODE --cpid CPID --model MODEL --product_type PRODUCT_TYPE --ios IOS [--boot-args BOOT_ARGS] 30 | 31 | SSHRD Ramdisk creation tool. 32 | 33 | options: 34 | -h, --help show this help message and exit 35 | --decrypt-mode DECRYPT_MODE, -d DECRYPT_MODE 36 | '0' is decryption using keys fetched online, '1' is decryption with Gaster 37 | --cpid CPID, -c CPID CPID of device (example 0x8000) 38 | --model MODEL, -m MODEL 39 | Model of device (example n71ap) 40 | --product_type PRODUCT_TYPE, -pt PRODUCT_TYPE 41 | Product type of device (example iPhone8,1) 42 | --ios IOS, -i IOS iOS version for the ramdisk (example 15.7) 43 | --boot-args BOOT_ARGS, -ba BOOT_ARGS 44 | iOS arguments to execute during boot. Default: "rd=md0 debug=0x2014e -v wdt=-1" 45 | ``` 46 | **Example:** 47 | ```shell 48 | # This will create a ramdisk for iPhone8,2 (iPhone 6s+), Board 1 (BoardConfig: n66ap, CPID: 0x8000) 49 | # With iOS version 15.7. Keys will be fetched online. 50 | ./create_ssh_ramdisk.py -d 0 -c 0x8000 -m n66ap -pt iPhone8,2 -i 15.7 51 | ``` 52 | Ramdisks will be located in `final_ramdisk` once the program finishes.
53 | **NOTE: iOS 16.x is not supported yet and iOS versions below 15 are indefinitely unsupported. I will not be able to help with any errors occuring when trying to create a ramdisk for this version.** 54 | 55 | # Donate 56 | Feel free to donate if you wanna support my work! 57 |
58 |
59 | 60 | # Credits 61 | - [verygenericname](https://github.com/verygenericname) for the shell script (original version) 62 | - [tihmstar](https://github.com/tihmstar) for pzb/original iBoot64Patcher/img4tool 63 | - [xerub](https://github.com/xerub) for img4lib and restored_external in the ramdisk 64 | - [Cryptic](https://github.com/Cryptiiiic) for iBoot64Patcher fork 65 | - [Nebula](https://github.com/itsnebulalol) for a bunch of QOL fixes to this script 66 | -------------------------------------------------------------------------------- /create_ssh_ramdisk.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | import os, sys, subprocess 4 | import argparse 5 | import platform 6 | import requests 7 | import urllib.request 8 | from os import path 9 | import plistlib 10 | import pathlib 11 | import zipfile 12 | from autodecrypt import scrapkeys, utils 13 | import glob 14 | import shutil 15 | import pyimg4 16 | from pyimg4 import Keybag, Compression 17 | import re 18 | from bs4 import BeautifulSoup 19 | 20 | import requests 21 | from pyquery import PyQuery 22 | 23 | 24 | 25 | def run_cmd(cmd): 26 | subp = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE) 27 | return subp.stdout.read().decode('utf-8') 28 | 29 | # NOTE: This is not my code. 30 | # Had to pluck them out from 'autodecrypt' module and do some very slight modifications on a few of the functions. 31 | # region decrypt_img4 functions 32 | 33 | 34 | def get_image_type(filename: str): 35 | """Check if it is IM4P format.""" 36 | if not os.path.isfile(filename): 37 | print("[e] %s : file not found" % filename) 38 | sys.exit(-1) 39 | with open(filename, "rb") as file: 40 | file.seek(7, 0) 41 | magic = file.read(4).decode() 42 | if "M4P" in magic: 43 | if magic != "IM4P": 44 | file.seek(-1, os.SEEK_CUR) 45 | magic = "img4" 46 | else: 47 | return None 48 | file.seek(2, os.SEEK_CUR) 49 | img_type = file.read(4) 50 | return magic, img_type 51 | 52 | 53 | def decrypt_img(infile: str, magic: str, iv: str, key: str) -> int: 54 | """Decrypt IM4P file. This code is mostly copy/pasta from decrypt_img4.py 55 | which itself is a copy/pasta from PyIMG4.""" 56 | file = open(infile, 'rb').read() 57 | im4p = pyimg4.IM4P(file) 58 | 59 | if im4p.payload.encrypted is False: 60 | print("[i] payload is not encrypted") 61 | return 0 62 | 63 | if iv is None or key is None: 64 | print("[e] iv or key is None") 65 | return -1 66 | 67 | outfile = infile.replace("im4p", "bin") 68 | print(f"[i] decrypting {infile} to {outfile}...") 69 | 70 | im4p.payload.decrypt(Keybag(key=key, iv=iv)) 71 | # VERY BAD IF STATEMENT HERE WATCH OUT 72 | # Had to actually do this due to the error "AttributeError: UNKNOWN" 73 | if Compression(im4p.payload.compression) is not Compression.NONE: 74 | if Compression(im4p.payload.compression) is not Compression.UNKNOWN: 75 | print('[i] image4 payload data is compressed, decompressing...') 76 | im4p.payload.decompress() 77 | 78 | open(outfile, 'wb').write(im4p.payload.output().data) 79 | print(f"[*] Success Decrypting '{infile}'") 80 | return 0 81 | 82 | 83 | # endregion 84 | 85 | def run_pcmd(cmd): 86 | ret = run_cmd(cmd).strip() 87 | if ret: 88 | print(ret) 89 | 90 | 91 | def clean_up(): 92 | print("[*] Cleaning up...") 93 | files = glob.glob('temp_ramdisk/*') 94 | for file in files: 95 | os.remove(file) 96 | 97 | 98 | def get_gaster(platform): 99 | base_url = f"https://nightly.link/verygenericname/gaster/workflows/makefile/main/gaster-{platform}.zip" 100 | print(f"[*] Downloading gaster for platform {platform}...") 101 | urllib.request.urlretrieve(base_url, f"{platform}/gaster-{platform}.zip") 102 | if os.path.isfile(f'{platform}/gaster-{platform}.zip'): 103 | print(f"[*] Downloaded! Extracting...") 104 | with zipfile.ZipFile(f'{platform}/gaster-{platform}.zip', 'r') as gaster_zip: 105 | gaster_zip.extractall(platform) 106 | print(f"[*] Cleaning up...") 107 | os.remove(f'{platform}/gaster-{platform}.zip') 108 | else: 109 | print(f"[!] Failed to download gaster for platform {platform}!") 110 | 111 | 112 | def get_url_and_build_id(product_type, ios_version): 113 | ipsw_url = None 114 | api_path = f'https://api.ipsw.me/v4/device/{product_type}?type=ipsw' 115 | resp = requests.get(api_path) 116 | if resp.status_code == 200 and resp.text: 117 | resp = resp.json() 118 | for firmware_list in resp['firmwares']: 119 | if firmware_list['version'] == ios_version: 120 | ipsw_url = firmware_list['url'] 121 | build_id = firmware_list['buildid'] 122 | return ipsw_url, build_id if ipsw_url is not None and build_id is not None else None 123 | 124 | 125 | # kerneldiff.py 126 | # https://github.com/verygenericname/SSHRD_Script/blob/main/kerneldiff.py 127 | def kernel_diff(original, patched, bpatchfile): 128 | print("[*] Comparing patched kernel with original...") 129 | sizeP = os.path.getsize(patched) 130 | sizeO = os.path.getsize(original) 131 | if sizeP != sizeO: 132 | print("[!] Size does not match, can't compare files!") 133 | p = open(patched, "rb").read() 134 | o = open(original, "rb").read() 135 | diff = [] 136 | for i in range(sizeO): 137 | originalByte = o[i] 138 | patchedByte = p[i] 139 | if originalByte != patchedByte: 140 | diff.append([hex(i), hex(originalByte), hex(patchedByte)]) 141 | diffFile = open(bpatchfile, 'w+') 142 | diffFile.write('#AMFI\n\n') 143 | for d in diff: 144 | data = str(d[0]) + " " + (str(d[1])) + " " + (str(d[2])) 145 | diffFile.write(data + '\n') 146 | print(data) 147 | 148 | 149 | def download_required_files(): 150 | ipsw_url, build_id = get_url_and_build_id(args.product_type, args.ios) 151 | if ipsw_url is None or build_id is None: 152 | print(f'[!] Required files are not found for this version of iOS!') 153 | exit(1) 154 | print(f'URL: {ipsw_url}') 155 | run_pcmd(f"../{sys_platform}/pzb -g BuildManifest.plist {ipsw_url}") 156 | with open('BuildManifest.plist', 'rb') as build_manifest: 157 | build_manifest_plist = plistlib.load(build_manifest) 158 | build_identities = build_manifest_plist['BuildIdentities'] 159 | codename: str = build_identities[0]['Info']['BuildTrain'] 160 | ibss_path: str = build_identities[0]['Manifest']['iBSS']['Info']['Path'] 161 | ibec_path: str = build_identities[0]['Manifest']['iBEC']['Info']['Path'] 162 | devicetree_path: str = build_identities[0]['Manifest']['DeviceTree']['Info']['Path'] 163 | 164 | restoreramdisk_path: str = build_identities[0]['Manifest']['RestoreRamDisk']['Info'][ 165 | 'Path'] 166 | kernelcache_path: str = build_identities[0]['Manifest']['RestoreKernelCache']['Info'][ 167 | 'Path'] 168 | trustcache_path: str = f'Firmware/{restoreramdisk_path}.trustcache' 169 | 170 | run_pcmd(f"../{sys_platform}/pzb -g {ibss_path} {ipsw_url}") 171 | run_pcmd(f"../{sys_platform}/pzb -g {ibec_path} {ipsw_url}") 172 | run_pcmd(f"../{sys_platform}/pzb -g {devicetree_path} {ipsw_url}") 173 | 174 | run_pcmd(f"../{sys_platform}/pzb -g {trustcache_path} {ipsw_url}") 175 | run_pcmd(f"../{sys_platform}/pzb -g {kernelcache_path} {ipsw_url}") 176 | run_pcmd(f"../{sys_platform}/pzb -g {restoreramdisk_path} {ipsw_url}") 177 | 178 | ibss_path = ibss_path.replace("Firmware/dfu/", "").replace("Firmware/all_flash/", "") 179 | ibec_path = ibec_path.replace("Firmware/dfu/", "").replace("Firmware/all_flash/", "") 180 | devicetree_path = devicetree_path.replace("Firmware/dfu/", "").replace("Firmware/all_flash/", "") 181 | trustcache_path = trustcache_path.replace("Firmware/", "") 182 | 183 | return ibss_path, ibec_path, kernelcache_path, restoreramdisk_path, trustcache_path, devicetree_path, build_id 184 | 185 | 186 | def get_fw_keys_page(device: str, build: str) -> str: 187 | """Return the URL of theiphonewiki to parse.""" 188 | wiki = "https://www.theiphonewiki.com" 189 | data = {"search": build + " " + device} 190 | response = requests.get(wiki + "/w/index.php", params=data) 191 | html = response.text 192 | link = re.search(r"\/wiki\/.*_" + build + r"_\(" + device + r"\)", html) 193 | if link is not None: 194 | pagelink = wiki + link.group() 195 | else: 196 | pagelink = None 197 | return pagelink 198 | 199 | def getkeys(device: str, build: str): 200 | pagelink = get_fw_keys_page(device, build) 201 | print("Page Link: ", pagelink) 202 | if pagelink is None: 203 | return None 204 | 205 | html = requests.get(pagelink).content 206 | 207 | soup = BeautifulSoup(html, 'html.parser') 208 | return_val = \ 209 | { 210 | "ibss_iv": soup.find("code", id='keypage-ibss-iv').text, 211 | "ibss_key": soup.find("code", id='keypage-ibss-key').text, 212 | "ibec_iv": soup.find("code", id='keypage-ibec-iv').text, 213 | "ibec_key": soup.find("code", id='keypage-ibec-key').text, 214 | } 215 | if soup.find("code", id='keypage-ibec2-iv') and soup.find("code", id='keypage-ibec2-key') is not None: 216 | return_val['ibec2_iv'] = soup.find("code", id='keypage-ibec2-iv').text 217 | return_val['ibec2_key'] = soup.find("code", id='keypage-ibec2-key').text 218 | return return_val 219 | 220 | # Wrapper around decrypt_img 221 | def decrypt_img4p(infile:str, buildid, iv, key): 222 | to_decrypt = infile.split('.')[0].lower() 223 | 224 | print(f'[*] Decrypting: "{infile}"...') 225 | magic = get_image_type(infile) 226 | print(f'[*] IV: "{iv}"') 227 | print(f'[*] Key: "{key}"') 228 | print(f'[*] Magic: "{magic}"') 229 | return True if decrypt_img(infile, magic, iv, key) == 0 else False 230 | 231 | 232 | 233 | def decrypt_boot_stages(ibss_path, ibec_path, build_id): 234 | print(f"Decryption mode: {'Gaster' if args.decrypt_mode == 1 else 'Online key fetch'}") 235 | 236 | if args.decrypt_mode == 1: 237 | run_pcmd(f'../{sys_platform}/gaster pwn') 238 | run_pcmd(f'../{sys_platform}/gaster reset') 239 | run_pcmd(f'../{sys_platform}/gaster decrypt {ibss_path} iBSS.dec') 240 | run_pcmd(f'../{sys_platform}/gaster decrypt {ibec_path} iBEC.dec') 241 | else: 242 | keys = getkeys(args.product_type, build_id) 243 | print(f'[*] Build ID: {build_id}') 244 | print(f'[*] Product Type: {args.product_type}') 245 | print("[*] Reached iBSS & iBEC decryption stage!") 246 | # run_pcmd(f'../{sys_platform}/img4 -i {ibss_path} -o iBSS.dec -k {keys["ibss_iv"]}{keys["ibss_key"]}') 247 | run_pcmd(f'../{sys_platform}/img4 -i {ibec_path} -o iBEC.dec -k {keys["ibec_iv"]}{keys["ibec_key"]}') 248 | if not decrypt_img4p(ibss_path, build_id, keys['ibss_iv'].replace('"', ''), keys['ibss_key'].replace('"', '')): 249 | print('[!] Failed to decrypt iBSS! Aborting...') 250 | exit(1) 251 | if not decrypt_img4p(ibec_path, build_id, keys['ibec_iv'].replace('"', ''), keys['ibec_key'].replace('"', '')): 252 | print('[!] Failed to decrypt iBEC! Aborting...') 253 | exit(1) 254 | 255 | 256 | def patch_files(kernelcache_path, devicetree_path, ramdisk_path, 257 | trustcache_path): 258 | run_pcmd(f'../{sys_platform}/iBoot64Patcher iBSS.dec iBSS.patched') 259 | run_pcmd(f'../{sys_platform}/img4 -i iBSS.patched -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/ibss.img4 -M IM4M -A -T ibss') 260 | if args.boot_args: 261 | boot_args = args.boot_args 262 | else: 263 | boot_args = '"rd=md0 debug=0x2014e -v wdt=-1"' 264 | if args.cpid == "0x8960" or args.cpid == "0x7000" or args.cpid == "0x7001": 265 | boot_args = boot_args[:-1] 266 | boot_args += ' -restore"' 267 | print(f"[*] Boot arguments: {boot_args}") 268 | run_pcmd(f'../{sys_platform}/iBoot64Patcher iBEC.dec iBEC.patched -b {boot_args} -n') 269 | run_pcmd(f'../{sys_platform}/img4 -i iBEC.patched -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/iBEC.img4 -M IM4M -A -T ibec') 270 | run_pcmd(f'../{sys_platform}/img4 -i {kernelcache_path} -o kcache.raw') 271 | run_pcmd(f'../{sys_platform}/Kernel64Patcher kcache.raw kcache.patched -a') 272 | kernel_diff('kcache.raw', 'kcache.patched', 'kcache.bpatch') 273 | is_linux = '-J' if sys_platform == 'Linux' else '' 274 | run_pcmd( 275 | f'../{sys_platform}/img4 -i {kernelcache_path} -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/kernelcache.img4 -M IM4M -T rkrn -P kcache.bpatch {is_linux}') 276 | run_pcmd( 277 | f'../{sys_platform}/img4 -i {devicetree_path} -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/devicetree.img4 -M IM4M -T rdtr') 278 | 279 | run_pcmd( 280 | f'../{sys_platform}/img4 -i {trustcache_path} -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/trustcache.img4 -M IM4M -T rtsc') 281 | run_pcmd(f'../{sys_platform}/img4 -i {ramdisk_path} -o ramdisk.dmg') 282 | patch_ramdisk() 283 | run_pcmd( 284 | f'../{sys_platform}/img4 -i ../other/logo.im4p -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/logo.img4 -A -T rlgo -M IM4M') 285 | 286 | 287 | def patch_ramdisk(): 288 | print("[*] Patching ramdisk...") 289 | if sys_platform == 'Darwin': 290 | run_pcmd('hdiutil resize -size 210MB ramdisk.dmg') 291 | run_pcmd('hdiutil attach -mountpoint /tmp/SSHRD ramdisk.dmg') 292 | 293 | if args.model == 'j42dap': 294 | run_pcmd(f'../{sys_platform}/gtar -x --no-overwrite-dir -f ../sshtars/atvssh.tar.gz -C /tmp/SSHRD/') 295 | elif args.cpid == '0x8012': 296 | run_pcmd(f'../{sys_platform}/gtar -x --no-overwrite-dir -f ../sshtars/t2ssh.tar.gz -C /tmp/SSHRD/') 297 | print("[!] !!! T2 SSH might hang and do nothing when booting !!!") 298 | else: 299 | run_pcmd(f'../{sys_platform}/gtar -x --no-overwrite-dir -f ../sshtars/ssh.tar.gz -C /tmp/SSHRD/') 300 | 301 | run_pcmd('hdiutil detach -force /tmp/SSHRD') 302 | run_pcmd('hdiutil resize -sectors min ramdisk.dmg') 303 | else: 304 | run_pcmd(f'../{sys_platform}/hfsplus ramdisk.dmg grow 210000000 > /dev/null') 305 | 306 | if args.model == 'j42dap': 307 | run_pcmd(f'../{sys_platform}/hfsplus ramdisk.dmg untar ../sshtars/atvssh.tar > /dev/null') 308 | elif args.cpid == '0x8012': 309 | run_pcmd(f'../{sys_platform}/hfsplus ramdisk.dmg untar ../sshtars/t2ssh.tar > /dev/null') 310 | print("[!] !!! T2 SSH might hang and do nothing when booting !!!") 311 | else: 312 | run_pcmd(f'../{sys_platform}/hfsplus ramdisk.dmg untar ../sshtars/ssh.tar > /dev/null') 313 | run_pcmd( 314 | f'../{sys_platform}/img4 -i ramdisk.dmg -o ../final_ramdisk/{args.ios}/{args.product_type}/{args.model}/ramdisk.img4 -M IM4M -A -T rdsk') 315 | 316 | 317 | if __name__ == '__main__': 318 | main_root_dir = os.path.realpath(os.path.dirname(__file__)) 319 | sys_platform = platform.uname().system 320 | print(f"[*] System platform: {sys_platform}") 321 | if sys_platform == 'Windows': 322 | print("[*] This tool is not supported on Windows, it needs Linux or MacOS.") 323 | exit(1) 324 | os.system('clear') 325 | parser = argparse.ArgumentParser(description='SSH Ramdisk creation tool.') 326 | parser.add_argument('--decrypt_mode', '-d', type=int, 327 | help="'0' is decryption using keys fetched online, '1' is decryption with Gaster", 328 | required=True) 329 | parser.add_argument('--cpid', '-c', type=str, help='CPID of device (example 0x8000)', required=True) 330 | parser.add_argument('--model', '-m', type=str, help='Model of device (example n71ap)', required=True) 331 | parser.add_argument('--product_type', '-pt', type=str, help='Product type of device (example iPhone8,1)', 332 | required=True) 333 | parser.add_argument('--ios', '-i', type=str, help='iOS version for the ramdisk (example 15.7)', required=True) 334 | parser.add_argument('--boot_args', '-ba', type=str, 335 | help='iOS arguments to execute during boot. Default: "rd=md0 debug=0x2014e -v wdt=-1"') 336 | args = parser.parse_args() 337 | # People might mistakenly use commas in the iOS version. 338 | if args.ios is not None and ',' in args.ios: 339 | args.ios = args.ios.replace(',', '.') 340 | if args.ios is not None and not float(args.ios) >= 15: 341 | print("[!] iOS version can't be below 15. Exitting...") 342 | exit(1) 343 | if not path.isfile(f'other/shsh/{args.cpid}.shsh'): 344 | print(f'[!] CPID ({args.cpid}) is not found or is not supported.') 345 | exit(1) 346 | 347 | if not os.path.isfile(f'{sys_platform}/gaster') and args.decrypt_mode == 1: 348 | print("[!] gaster does not appear to exist! Downloading a new one...\n") 349 | get_gaster(sys_platform) 350 | 351 | pathlib.Path('temp_ramdisk').mkdir(exist_ok=True, parents=True) 352 | pathlib.Path('final_ramdisk').mkdir(exist_ok=True, parents=True) 353 | pathlib.Path(f'final_ramdisk/{args.ios}/{args.product_type}').mkdir(exist_ok=True, parents=True) 354 | 355 | if path.isdir(f'final_ramdisk/{args.ios}/{args.product_type}/{args.model}'): 356 | choice = input(f'[!] Data for {args.product_type} ({args.model}/{args.ios}) already exists! Do you want to delete them and start over? (y/N): ') or 'N' 357 | if choice.lower() == 'n': 358 | print('[*] Exiting...') 359 | exit(0) 360 | shutil.rmtree(f'final_ramdisk/{args.ios}/{args.product_type}/{args.model}') 361 | # files = glob.glob('temp_ramdisk/*') 362 | # for file in files: 363 | # os.remove(file) 364 | 365 | pathlib.Path(f'final_ramdisk/{args.ios}/{args.product_type}/{args.model}').mkdir(exist_ok=True, parents=True) 366 | 367 | os.chdir('temp_ramdisk') 368 | run_pcmd(f"../{sys_platform}/img4tool -e -s ../other/shsh/{args.cpid}.shsh -m IM4M") 369 | 370 | ibss_path, ibec_path, kernelcache_path, restoreramdisk_path, trustcache_path, devicetree_path, build_id = download_required_files() 371 | decrypt_boot_stages(ibss_path, ibec_path, build_id) 372 | patch_files(kernelcache_path, devicetree_path, restoreramdisk_path, trustcache_path) 373 | 374 | os.chdir('../') 375 | # clean_up() 376 | print(f"[*] Ramdisk files saved to: {main_root_dir}/final_ramdisk/{args.ios}/{args.product_type}/{args.model}") 377 | print("[*] Done!") 378 | print("Python version was made by Bonkeyzz.") 379 | print("Original Shell script was made by verygenericname (https://github.com/verygenericname).") 380 | -------------------------------------------------------------------------------- /other/logo.im4p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bonkeyzz/SSH_Ramdisk_Creator/294607dfdbf362258c238bbcd27e914009024c40/other/logo.im4p -------------------------------------------------------------------------------- /other/shsh/0x8001.shsh: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | @ServerVersion 6 | 2.1.0 7 | ApImg4Ticket 8 | 9 | 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 94 | LFsukOAR3Baj4cj3hLJP3Es6CtUSftwRP/oRc2UaSXCgfnWCtDwrL1XfMIixdU1F3Aco 95 | LUo6hf2flT4iupxG97doe7OU1UI+BbM4+Gd5SIxsH4u+7u1UBdWjC1h9eA8kqaHcCnTq 96 | 9wIDAQABo4GcMIGZMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud 97 | DgQWBBRJPTZTydcV4YZhTqyrqxhWY13DxjAfBgNVHSMEGDAWgBQr0GlHlHYJ/vRrjS5A 98 | pvdHTX8IXjA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vd3d3LmFwcGxlLmNvbS9hcHBs 99 | ZWNhL3Jvb3QuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQA0xQzFDlkRL6bCnzJ452Qyadut 100 | wiXKt0eDt5I8cVOgsq0wlYBQvW1fTNzOeA1MSRBQOBA1v0WBrGZYLCEj+JZegOnTxkz9 101 | ha45YfYoqkTtFZs/R8BXrGccjM3Uk41P22pUp3tCWw+Zxtc4q1KnoYMdhTB06g0d2miE 102 | j+KEfsu5QW7Vn6hCtf8ztnF/6qO53UkDYIV2ED6OqOE24xLdhWztZlOwW0ibL3/2yhzw 103 | XZgtdK3wSEfF4ZpnsiIPsA4CoOG6amK5tLVx9CXhs+Wg7cgaQLX4MRUFpFw4I0yQnUcD 104 | gIDUMpBFjw+vm/wC7u3L5jH2nxXmfStXQw7iD6GgrYnaMIIE2jCCA8KgAwIBAgIIBhLD 105 | lhgt4xowDQYJKoZIhvcNAQEFBQAwfjELMAkGA1UEBhMCVVMxEzARBgNVBAoTCkFwcGxl 106 | IEluYy4xJjAkBgNVBAsTHUFwcGxlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MTIwMAYD 107 | VQQDEylBcHBsZSBTZWN1cmUgQm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x 108 | NDA3MDkxNzExMDNaFw0yMjAxMDUxOTIxNTlaMGQxCzAJBgNVBAYTAlVTMRMwEQYDVQQK 109 | DApBcHBsZSBJbmMuMQwwCgYDVQQLDANFVFMxMjAwBgNVBAMMKVM4MDAxLVRzc0xpdmUt 110 | TWFuaWZlc3RLZXktUmV2QS1EYXRhQ2VudGVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A 111 | MIIBCgKCAQEA8lH+CnEj9XXbb31HUusaNqmPZ0CMz0IZXd+mUJCcLfqHsN/EULrPWjG3 112 | X8wTJTx/FxlLcVYGDfc2HfHhzlprH+2NSPL62caMQaRJxtPKFan9bT2zj9tmSl9U+r7w 113 | r+zOufGSOd6kw7JdWmjYW40hOWFqNqf35lUFlOdJfrJrWaaN8Qx7T0vxl07QTcaDhw5J 114 | ZnS14kMoPaHof/Gwf+nRas6E6hI8W9YeimclI45kT7IWjy2QqsG5jI5QdWEFEnJlvvDV 115 | x8g6qfG9qC2Cw5y/YCT7KfrAk4R5UiFu/DC/KFYgD7QzE430ie14v592JBXtie/xEeO1 116 | IDxJSmamKaTa3QIDAQABo4IBdDCCAXAwHQYDVR0OBBYEFBrlGLgi9zihM75btUUgw9Qa 117 | US5fMB8GA1UdIwQYMBaAFEk9NlPJ1xXhhmFOrKurGFZjXcPGMAsGA1UdDwQEAwIHgDCC 118 | AR8GCiqGSIb3Y2QGAQ8BAf8EggEMMYIBCP+E6oWcUIG2MIGzFgRNQU5QMYGq/4SSuYZI 119 | DDAKFgRCTkNIoAIFAP+Ekr2kRAwwChYEQk9SRKACBQD/hJqVoE8LMAkWBENFUE8CAQH/ 120 | hJqhklANMAsWBENISVACAwCAAf+EmsGkTwwwChYEQ1BST6ACBQD/hJrNikMMMAoWBENT 121 | RUOgAgUA/4SqjZJEDDAKFgRFQ0lEoAIFAP+FmpGeTQswCRYEU0RPTQIBAf+Hm7nebgww 122 | ChYEc25vbqACBQD/hPqJlFBDMEEWBE9CSlAxOf+Eop2mVAwwChYEREdTVKACBQD/hKrB 123 | pE8MMAoWBEVQUk+gAgUA/4SqzYpDDDAKFgRFU0VDoAIFADANBgkqhkiG9w0BAQUFAAOC 124 | AQEACJSoIiGHwxVL8LxKt0/oPHRwZ6HAmnNMjMHH+xlziUuijkyttBX5JDHkCGfrVtdQ 125 | Qzt8PJCLF3v/yzTSjbS4QjvGliK9M3Ee+4yH5y9+ccukROQW3PKO0m8dNCfy/3fl+DR5 126 | xtZfCFVjaWkgdRpisaLXDlm2y96V0viwDEDOYD16N1WIZTXymAs0ZzY7Hj7hyq9ZOqPj 127 | 0X5wbGKPvDJoCbQ9rcqN+mgPsgrgJv88b61s0iQCHWt6L+yU/8DlGBPV6uCyZA0yIUiL 128 | iIfCtiqDWWagYoDnOR5ZTqzPtA6Hz99Q9Mkh3vKoP031odc/UKqJkn7e/1RNSxYTPSzk 129 | ZWHxCA== 130 | 131 | generator 132 | 0x1111111111111111 133 | updateInstall 134 | 135 | @ServerVersion 136 | 2.1.0 137 | ApImg4Ticket 138 | 139 | MIIX6BYESU00TQIBADGCDfn/hOqFnEKCDfAwgg3sFgRNQU5CMYIN4v+E6oWc 140 | UIIBATCB/hYETUFOUDGB9f+EkrmGSB4wHBYEQk5DSAQUOoi3w4AvLwUQq8Qy 141 | EEoV69i9cVT/hJK9pEQLMAkWBEJPUkQCAQj/hJqVoE8LMAkWBENFUE8CAQH/ 142 | hJqhklANMAsWBENISVACAwCAAf+EmsGkTwswCRYEQ1BSTwEB//+Ems2KQwsw 143 | CRYEQ1NFQwEB//+Eqo2SRBEwDxYERUNJRAIHEmk5MPECJv+FmpGeTQswCRYE 144 | U0RPTQIBAf+Hm7nebh4wHBYEc25vbgQU+CxfmHH+1NFX6Q9mj/UrilXUkyH/ 145 | h5vJ7G4eMBwWBHNydm4EFAEaxQFwnD+y8qOafANij0XBjyPp/4aLveBmZTBj 146 | FgRhb3BmMVv/hKKdplQeMBwWBERHU1QEFJT8X0cCffMZgWsPZd6cgfsPskb+ 147 | /4SqrYpZCzAJFgRFS0VZAQEA/4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJ 148 | FgRFU0VDAQH//4aThegwZTBjFgRiYXQwMVv/hKKdplQeMBwWBERHU1QEFOas 149 | rqF0yFHK1eEpppm8n2E8H24L/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJ 150 | FgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4aThegxZTBjFgRiYXQxMVv/ 151 | hKKdplQeMBwWBERHU1QEFJqgAg5CoGSBMiEvpooHxeyELLZd/4SqrYpZCzAJ 152 | FgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH/ 153 | /4aThehGZTBjFgRiYXRGMVv/hKKdplQeMBwWBERHU1QEFIk0Umle9YTNbw+q 154 | 8SSJV+YS9La4/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH/ 155 | /4SqzYpDCzAJFgRFU0VDAQH//4aboc4wZTBjFgRjaGcwMVv/hKKdplQeMBwW 156 | BERHU1QEFFsqcFxps8NGsTC7whEY0g0KGvyO/4SqrYpZCzAJFgRFS0VZAQH/ 157 | /4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4aboc4xZTBj 158 | FgRjaGcxMVv/hKKdplQeMBwWBERHU1QEFFV6NYEK4hb/WR0tAhM+ZL3d1IoC 159 | /4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJ 160 | FgRFU0VDAQH//4aj0eRlZTBjFgRkdHJlMVv/hKKdplQeMBwWBERHU1QEFPEA 161 | ogbbjsLmGDYZjypwqQ3ZkwA5/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJ 162 | FgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4az0cJwcTBvFgRmdGFwMWf/ 163 | hKKdplQqMCgWBERHU1QEIFNAtqBZvbcy5xXnuxspLtzUXCqNHQfmA50/M418 164 | RCir/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpD 165 | CzAJFgRFU0VDAQH//4az0eZwcTBvFgRmdHNwMWf/hKKdplQqMCgWBERHU1QE 166 | IFNAtqBZvbcy5xXnuxspLtzUXCqNHQfmA50/M418RCir/4SqrYpZCzAJFgRF 167 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4a7 168 | sfJQZTBjFgRnbHlQMVv/hKKdplQeMBwWBERHU1QEFNefsS3QSXJEXAPVwQqN 169 | Kq6JBScv/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4Sq 170 | zYpDCzAJFgRFU0VDAQH//4bLicpjZTBjFgRpYmVjMVv/hKKdplQeMBwWBERH 171 | U1QEFFbwKQijptEDNzVPVFr5LmgC5q95/4SqrYpZCzAJFgRFS0VZAQH//4Sq 172 | waRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4bLid50ZTBjFgRp 173 | Ym90MVv/hKKdplQeMBwWBERHU1QEFHePxttMpSYRhidG6ZjKSzfF/v/W/4Sq 174 | rYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRF 175 | U0VDAQH//4bLieZzZTBjFgRpYnNzMVv/hKKdplQeMBwWBERHU1QEFGEuvw30 176 | SPAbWp5fXeYmgW1TdfPH/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRF 177 | UFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4bLsdhiZTBjFgRpbGxiMVv/hKKd 178 | plQeMBwWBERHU1QEFOebYxzUremXAKpal1FJ2bIgfU0Z/4SqrYpZCzAJFgRF 179 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4bL 180 | zfJzZTBjFgRpc3lzMVv/hKKdplQeMBwWBERHU1QEFDrJBW8I0OPoRsfOGftX 181 | wWVAhDUj/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4Sq 182 | zYpDCzAJFgRFU0VDAQH//4bbydxsZTBjFgRrcm5sMVv/hKKdplQeMBwWBERH 183 | U1QEFKjymDhW/NWSOYN4hMGdb9G0uoLG/4SqrYpZCzAJFgRFS0VZAQH//4Sq 184 | waRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4bjvc5vZTBjFgRs 185 | b2dvMVv/hKKdplQeMBwWBERHU1QEFN49khSJNJgvcq6CZGL5I6qdBZp5/4Sq 186 | rYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRF 187 | U0VDAQH//4brzfJzZTBjFgRtc3lzMVv/hKKdplQeMBwWBERHU1QEFEswymAz 188 | 8XZoc/3wnNdwmpu9g1bw/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRF 189 | UFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eTkeZrZTBjFgRyZHNrMVv/hKKd 190 | plQeMBwWBERHU1QEFHleTFDXqm4ndiGcwwaYkWwuKJZS/4SqrYpZCzAJFgRF 191 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eT 192 | kehyZTBjFgRyZHRyMVv/hKKdplQeMBwWBERHU1QEFIIvEhEyJX51Gp/4rnGj 193 | +vb759/2/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4Sq 194 | zYpDCzAJFgRFU0VDAQH//4eTlcZtZTBjFgRyZWNtMVv/hKKdplQeMBwWBERH 195 | U1QEFNlnJArUtGMkapeWMoE6zaFZCAut/4SqrYpZCzAJFgRFS0VZAQH//4Sq 196 | waRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eTmehhcTBvFgRy 197 | ZnRhMWf/hKKdplQqMCgWBERHU1QEIFNAtqBZvbcy5xXnuxspLtzUXCqNHQfm 198 | A50/M418RCir/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH/ 199 | /4SqzYpDCzAJFgRFU0VDAQH//4eTmehzcTBvFgRyZnRzMWf/hKKdplQqMCgW 200 | BERHU1QEIFNAtqBZvbcy5xXnuxspLtzUXCqNHQfmA50/M418RCir/4SqrYpZ 201 | CzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VD 202 | AQH//4eTreRuZTBjFgRya3JuMVv/hKKdplQeMBwWBERHU1QEFF109cflRmjm 203 | dDzBY99wmIddRTlc/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJP 204 | AQH//4SqzYpDCzAJFgRFU0VDAQH//4eTsc5vZTBjFgRybGdvMVv/hKKdplQe 205 | MBwWBERHU1QEFOurY1VYHPzgru1OyC+qnL64W+QE/4SqrYpZCzAJFgRFS0VZ 206 | AQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eTveZp 207 | ZTBjFgRyb3NpMVv/hKKdplQeMBwWBERHU1QEFNbnlB+GW1dJhzyCWnic3xeY 208 | B08e/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpD 209 | CzAJFgRFU0VDAQH//4eTzcpwZTBjFgRyc2VwMVv/hKKdplQeMBwWBERHU1QE 210 | FBBiVWhA0FW6UvlJr0+UEu/rMlyq/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRP 211 | CzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eT0eZjZTBjFgRydHNj 212 | MVv/hKKdplQeMBwWBERHU1QEFJNDCAtmZq+t3qTwPUSz0VBgpP/r/4SqrYpZ 213 | CzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VD 214 | AQH//4ebleBpZTBjFgRzZXBpMVv/hKKdplQeMBwWBERHU1QEFGvDTZpJxW15 215 | uH7r07VEls9Lwtzg/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJP 216 | AQH//4SqzYpDCzAJFgRFU0VDAQH//4ejyeZ0ZTBjFgR0cnN0MVv/hKKdplQe 217 | MBwWBERHU1QEFOP/DifQOv55ubZuLdUEPig45UqH/4SqrYpZCzAJFgRFS0VZ 218 | AQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH/BIIBAPJF 219 | l5Qgf1w1QfTt6WkYCSPrs3CGuJz692AmVZcf2DwdbGGSBvpCGyrAxBCg3Ecm 220 | rE7eEdjQJ0kt02p78LsApSiAt5ZKU6dJ1+5xdLxnpIFqbLZ6LBHvLnfBJ97l 221 | kyMKnbAv9N8pu64T1UyKHbSlrvoB9ubHBdhXjlYNsS5IcON0Fro2hvLNMUZe 222 | paS5r9c0iv/TXJCJdjATRvxdHdHkbToOjqARfNr2phcqx2C71TOEQfwNfx+k 223 | lQ3297AsBZlgdYhNA1FbGCyyGDfqhVhuCVLFpCa/HBRvCmSLl0dDOytSHcc/ 224 | dIAX527t9z+lT1zPSNEiuceWXqHbvlvOGcV1j0wwggjaMIID+DCCAuCgAwIB 225 | AgIBEDANBgkqhkiG9w0BAQUFADBiMQswCQYDVQQGEwJVUzETMBEGA1UEChMK 226 | QXBwbGUgSW5jLjEmMCQGA1UECxMdQXBwbGUgQ2VydGlmaWNhdGlvbiBBdXRo 227 | b3JpdHkxFjAUBgNVBAMTDUFwcGxlIFJvb3QgQ0EwHhcNMDcwMTA1MTkyMTU5 228 | WhcNMjIwMTA1MTkyMTU5WjB+MQswCQYDVQQGEwJVUzETMBEGA1UEChMKQXBw 229 | bGUgSW5jLjEmMCQGA1UECxMdQXBwbGUgQ2VydGlmaWNhdGlvbiBBdXRob3Jp 230 | dHkxMjAwBgNVBAMTKUFwcGxlIFNlY3VyZSBCb290IENlcnRpZmljYXRpb24g 231 | QXV0aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/vLd 232 | 2mU5sHLjA4SB9FbJ0aFKu8gEAfNGDZXhN5UKaUfGxIx5PkdVBrIGFOt+pPUj 233 | /kI1mO80Bc6a062U0KIPwtK0BEhMI1pbxwudYtPz42sQ/pcIV8YSdncZssbD 234 | LJjttymH5NwYtuXzuhP7sra3Z9nL32+lkz3tepNntP00FuQAqwu3Th9a1gNo 235 | PnK2FDA6DGSXoEYieRt3LFsukOAR3Baj4cj3hLJP3Es6CtUSftwRP/oRc2Ua 236 | SXCgfnWCtDwrL1XfMIixdU1F3AcoLUo6hf2flT4iupxG97doe7OU1UI+BbM4 237 | +Gd5SIxsH4u+7u1UBdWjC1h9eA8kqaHcCnTq9wIDAQABo4GcMIGZMA4GA1Ud 238 | DwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRJPTZTydcV 239 | 4YZhTqyrqxhWY13DxjAfBgNVHSMEGDAWgBQr0GlHlHYJ/vRrjS5ApvdHTX8I 240 | XjA2BgNVHR8ELzAtMCugKaAnhiVodHRwOi8vd3d3LmFwcGxlLmNvbS9hcHBs 241 | ZWNhL3Jvb3QuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQA0xQzFDlkRL6bCnzJ4 242 | 52QyadutwiXKt0eDt5I8cVOgsq0wlYBQvW1fTNzOeA1MSRBQOBA1v0WBrGZY 243 | LCEj+JZegOnTxkz9ha45YfYoqkTtFZs/R8BXrGccjM3Uk41P22pUp3tCWw+Z 244 | xtc4q1KnoYMdhTB06g0d2miEj+KEfsu5QW7Vn6hCtf8ztnF/6qO53UkDYIV2 245 | ED6OqOE24xLdhWztZlOwW0ibL3/2yhzwXZgtdK3wSEfF4ZpnsiIPsA4CoOG6 246 | amK5tLVx9CXhs+Wg7cgaQLX4MRUFpFw4I0yQnUcDgIDUMpBFjw+vm/wC7u3L 247 | 5jH2nxXmfStXQw7iD6GgrYnaMIIE2jCCA8KgAwIBAgIIBhLDlhgt4xowDQYJ 248 | KoZIhvcNAQEFBQAwfjELMAkGA1UEBhMCVVMxEzARBgNVBAoTCkFwcGxlIElu 249 | Yy4xJjAkBgNVBAsTHUFwcGxlIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MTIw 250 | MAYDVQQDEylBcHBsZSBTZWN1cmUgQm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhv 251 | cml0eTAeFw0xNDA3MDkxNzExMDNaFw0yMjAxMDUxOTIxNTlaMGQxCzAJBgNV 252 | BAYTAlVTMRMwEQYDVQQKDApBcHBsZSBJbmMuMQwwCgYDVQQLDANFVFMxMjAw 253 | BgNVBAMMKVM4MDAxLVRzc0xpdmUtTWFuaWZlc3RLZXktUmV2QS1EYXRhQ2Vu 254 | dGVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA8lH+CnEj9XXb 255 | b31HUusaNqmPZ0CMz0IZXd+mUJCcLfqHsN/EULrPWjG3X8wTJTx/FxlLcVYG 256 | Dfc2HfHhzlprH+2NSPL62caMQaRJxtPKFan9bT2zj9tmSl9U+r7wr+zOufGS 257 | Od6kw7JdWmjYW40hOWFqNqf35lUFlOdJfrJrWaaN8Qx7T0vxl07QTcaDhw5J 258 | ZnS14kMoPaHof/Gwf+nRas6E6hI8W9YeimclI45kT7IWjy2QqsG5jI5QdWEF 259 | EnJlvvDVx8g6qfG9qC2Cw5y/YCT7KfrAk4R5UiFu/DC/KFYgD7QzE430ie14 260 | v592JBXtie/xEeO1IDxJSmamKaTa3QIDAQABo4IBdDCCAXAwHQYDVR0OBBYE 261 | FBrlGLgi9zihM75btUUgw9QaUS5fMB8GA1UdIwQYMBaAFEk9NlPJ1xXhhmFO 262 | rKurGFZjXcPGMAsGA1UdDwQEAwIHgDCCAR8GCiqGSIb3Y2QGAQ8BAf8EggEM 263 | MYIBCP+E6oWcUIG2MIGzFgRNQU5QMYGq/4SSuYZIDDAKFgRCTkNIoAIFAP+E 264 | kr2kRAwwChYEQk9SRKACBQD/hJqVoE8LMAkWBENFUE8CAQH/hJqhklANMAsW 265 | BENISVACAwCAAf+EmsGkTwwwChYEQ1BST6ACBQD/hJrNikMMMAoWBENTRUOg 266 | AgUA/4SqjZJEDDAKFgRFQ0lEoAIFAP+FmpGeTQswCRYEU0RPTQIBAf+Hm7ne 267 | bgwwChYEc25vbqACBQD/hPqJlFBDMEEWBE9CSlAxOf+Eop2mVAwwChYEREdT 268 | VKACBQD/hKrBpE8MMAoWBEVQUk+gAgUA/4SqzYpDDDAKFgRFU0VDoAIFADAN 269 | BgkqhkiG9w0BAQUFAAOCAQEACJSoIiGHwxVL8LxKt0/oPHRwZ6HAmnNMjMHH 270 | +xlziUuijkyttBX5JDHkCGfrVtdQQzt8PJCLF3v/yzTSjbS4QjvGliK9M3Ee 271 | +4yH5y9+ccukROQW3PKO0m8dNCfy/3fl+DR5xtZfCFVjaWkgdRpisaLXDlm2 272 | y96V0viwDEDOYD16N1WIZTXymAs0ZzY7Hj7hyq9ZOqPj0X5wbGKPvDJoCbQ9 273 | rcqN+mgPsgrgJv88b61s0iQCHWt6L+yU/8DlGBPV6uCyZA0yIUiLiIfCtiqD 274 | WWagYoDnOR5ZTqzPtA6Hz99Q9Mkh3vKoP031odc/UKqJkn7e/1RNSxYTPSzk 275 | ZWHxCA== 276 | 277 | 278 | noNonce 279 | 280 | @ServerVersion 281 | 2.1.0 282 | ApImg4Ticket 283 | 284 | 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 360 | FgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH/ 361 | /4ejyeZ0ZTBjFgR0cnN0MVv/hKKdplQeMBwWBERHU1QEFOP/DifQOv55ubZu 362 | LdUEPig45UqH/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH/ 363 | /4SqzYpDCzAJFgRFU0VDAQH/BIIBALhLfCshwWTHYjEdsAwhlVqZ+s5cgX92 364 | 5Mu++LsDZwWo4zUweF3djU7ZCe2zvgM3s9PfuNBsh3yh19Y0rlHWhRMpRU7X 365 | uDVdsmsxjcg/XWHPQWZaeqaZGIbmVYKymeOsJx7MpSyTVX7LGiTzhPKPNXVj 366 | K8oBl+GDbmCGCzqsstJgH4F73J+jwZmWhTZD1xYEah/uCBSA1jMF6SNJ35gU 367 | rzI9KO1RJoHhgqAPiq/pT6/WXOGWBKYnUoN+HNJTwDuPOHZTw4wIo4zhFMO7 368 | 0kPd2UBvo8x626fIJi5eCMSJGlwWlv7Lii8+cQHXWeq/vs/7sA6Yqq5ulrx9 369 | dRtcOn1l8LowggjaMIID+DCCAuCgAwIBAgIBEDANBgkqhkiG9w0BAQUFADBi 370 | MQswCQYDVQQGEwJVUzETMBEGA1UEChMKQXBwbGUgSW5jLjEmMCQGA1UECxMd 371 | QXBwbGUgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxFjAUBgNVBAMTDUFwcGxl 372 | IFJvb3QgQ0EwHhcNMDcwMTA1MTkyMTU5WhcNMjIwMTA1MTkyMTU5WjB+MQsw 373 | CQYDVQQGEwJVUzETMBEGA1UEChMKQXBwbGUgSW5jLjEmMCQGA1UECxMdQXBw 374 | bGUgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxMjAwBgNVBAMTKUFwcGxlIFNl 375 | Y3VyZSBCb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIIBIjANBgkqhkiG 376 | 9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/vLd2mU5sHLjA4SB9FbJ0aFKu8gEAfNG 377 | DZXhN5UKaUfGxIx5PkdVBrIGFOt+pPUj/kI1mO80Bc6a062U0KIPwtK0BEhM 378 | I1pbxwudYtPz42sQ/pcIV8YSdncZssbDLJjttymH5NwYtuXzuhP7sra3Z9nL 379 | 32+lkz3tepNntP00FuQAqwu3Th9a1gNoPnK2FDA6DGSXoEYieRt3LFsukOAR 380 | 3Baj4cj3hLJP3Es6CtUSftwRP/oRc2UaSXCgfnWCtDwrL1XfMIixdU1F3Aco 381 | LUo6hf2flT4iupxG97doe7OU1UI+BbM4+Gd5SIxsH4u+7u1UBdWjC1h9eA8k 382 | qaHcCnTq9wIDAQABo4GcMIGZMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E 383 | BTADAQH/MB0GA1UdDgQWBBRJPTZTydcV4YZhTqyrqxhWY13DxjAfBgNVHSME 384 | GDAWgBQr0GlHlHYJ/vRrjS5ApvdHTX8IXjA2BgNVHR8ELzAtMCugKaAnhiVo 385 | dHRwOi8vd3d3LmFwcGxlLmNvbS9hcHBsZWNhL3Jvb3QuY3JsMA0GCSqGSIb3 386 | DQEBBQUAA4IBAQA0xQzFDlkRL6bCnzJ452QyadutwiXKt0eDt5I8cVOgsq0w 387 | lYBQvW1fTNzOeA1MSRBQOBA1v0WBrGZYLCEj+JZegOnTxkz9ha45YfYoqkTt 388 | FZs/R8BXrGccjM3Uk41P22pUp3tCWw+Zxtc4q1KnoYMdhTB06g0d2miEj+KE 389 | fsu5QW7Vn6hCtf8ztnF/6qO53UkDYIV2ED6OqOE24xLdhWztZlOwW0ibL3/2 390 | yhzwXZgtdK3wSEfF4ZpnsiIPsA4CoOG6amK5tLVx9CXhs+Wg7cgaQLX4MRUF 391 | pFw4I0yQnUcDgIDUMpBFjw+vm/wC7u3L5jH2nxXmfStXQw7iD6GgrYnaMIIE 392 | 2jCCA8KgAwIBAgIIBhLDlhgt4xowDQYJKoZIhvcNAQEFBQAwfjELMAkGA1UE 393 | BhMCVVMxEzARBgNVBAoTCkFwcGxlIEluYy4xJjAkBgNVBAsTHUFwcGxlIENl 394 | cnRpZmljYXRpb24gQXV0aG9yaXR5MTIwMAYDVQQDEylBcHBsZSBTZWN1cmUg 395 | Qm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNDA3MDkxNzExMDNa 396 | Fw0yMjAxMDUxOTIxNTlaMGQxCzAJBgNVBAYTAlVTMRMwEQYDVQQKDApBcHBs 397 | ZSBJbmMuMQwwCgYDVQQLDANFVFMxMjAwBgNVBAMMKVM4MDAxLVRzc0xpdmUt 398 | TWFuaWZlc3RLZXktUmV2QS1EYXRhQ2VudGVyMIIBIjANBgkqhkiG9w0BAQEF 399 | AAOCAQ8AMIIBCgKCAQEA8lH+CnEj9XXbb31HUusaNqmPZ0CMz0IZXd+mUJCc 400 | LfqHsN/EULrPWjG3X8wTJTx/FxlLcVYGDfc2HfHhzlprH+2NSPL62caMQaRJ 401 | xtPKFan9bT2zj9tmSl9U+r7wr+zOufGSOd6kw7JdWmjYW40hOWFqNqf35lUF 402 | lOdJfrJrWaaN8Qx7T0vxl07QTcaDhw5JZnS14kMoPaHof/Gwf+nRas6E6hI8 403 | W9YeimclI45kT7IWjy2QqsG5jI5QdWEFEnJlvvDVx8g6qfG9qC2Cw5y/YCT7 404 | KfrAk4R5UiFu/DC/KFYgD7QzE430ie14v592JBXtie/xEeO1IDxJSmamKaTa 405 | 3QIDAQABo4IBdDCCAXAwHQYDVR0OBBYEFBrlGLgi9zihM75btUUgw9QaUS5f 406 | MB8GA1UdIwQYMBaAFEk9NlPJ1xXhhmFOrKurGFZjXcPGMAsGA1UdDwQEAwIH 407 | gDCCAR8GCiqGSIb3Y2QGAQ8BAf8EggEMMYIBCP+E6oWcUIG2MIGzFgRNQU5Q 408 | MYGq/4SSuYZIDDAKFgRCTkNIoAIFAP+Ekr2kRAwwChYEQk9SRKACBQD/hJqV 409 | oE8LMAkWBENFUE8CAQH/hJqhklANMAsWBENISVACAwCAAf+EmsGkTwwwChYE 410 | Q1BST6ACBQD/hJrNikMMMAoWBENTRUOgAgUA/4SqjZJEDDAKFgRFQ0lEoAIF 411 | AP+FmpGeTQswCRYEU0RPTQIBAf+Hm7nebgwwChYEc25vbqACBQD/hPqJlFBD 412 | MEEWBE9CSlAxOf+Eop2mVAwwChYEREdTVKACBQD/hKrBpE8MMAoWBEVQUk+g 413 | AgUA/4SqzYpDDDAKFgRFU0VDoAIFADANBgkqhkiG9w0BAQUFAAOCAQEACJSo 414 | IiGHwxVL8LxKt0/oPHRwZ6HAmnNMjMHH+xlziUuijkyttBX5JDHkCGfrVtdQ 415 | Qzt8PJCLF3v/yzTSjbS4QjvGliK9M3Ee+4yH5y9+ccukROQW3PKO0m8dNCfy 416 | /3fl+DR5xtZfCFVjaWkgdRpisaLXDlm2y96V0viwDEDOYD16N1WIZTXymAs0 417 | ZzY7Hj7hyq9ZOqPj0X5wbGKPvDJoCbQ9rcqN+mgPsgrgJv88b61s0iQCHWt6 418 | L+yU/8DlGBPV6uCyZA0yIUiLiIfCtiqDWWagYoDnOR5ZTqzPtA6Hz99Q9Mkh 419 | 3vKoP031odc/UKqJkn7e/1RNSxYTPSzkZWHxCA== 420 | 421 | 422 | 423 | 424 | -------------------------------------------------------------------------------- /other/shsh/0x8010.shsh: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | @ServerVersion 6 | 2.1.0 7 | ApImg4Ticket 8 | 9 | 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 138 | 00pVv1ypwo4yu+daog== 139 | 140 | generator 141 | 0xcd211884a19012aa 142 | updateInstall 143 | 144 | @ServerVersion 145 | 2.1.0 146 | ApImg4Ticket 147 | 148 | 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 243 | Tzc3GMetzb4yRJDBBuSIFJfgBFW3k/Ei6O1eT6k+rqMz/4SqrYpZCzAJFgRF 244 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH/BIIC 245 | ACJKPaKcmlyxIkSBoms404WhEZmwKJFMCuMxITut55Z2cGArcqazQpiMqI8o 246 | itW5sEPDbVx5VxPgrtWJgZjV5l6DSTHGlYpl4mmIE+c8I96ht7KrAPRGc0Fo 247 | hKdpscz1ZQgtT/P7DA/ZqU8q3VWd5RMKaie0SWFdyEw18Gk6ITZkPcgulTWW 248 | lXws7QJZmRPhRSb9cLfzMIjtj0/NbxnFr8AYz9tCuIs38NxtZL2arlhRLfUP 249 | DTYJiuXQJ4OIotRAJH5jsJB7YMbejfmEo+I7879Hb7tbt1NOrtnRZm95GoSl 250 | +JKTgtrblc91s1BxbXH2435JFmVM+q1eAorTgZkNctdTGhasPXBXhyvOSzso 251 | UJWNURY6F+IoXHRUTD34C64GjoELVC/zudMN8GUzrDISJHUO3je+toFojSsD 252 | Z0Qpx0qldEawyHvBj1ojuRg319m5ywZEgT7VE20iHVpHE/CCa3igbuuV4K0Y 253 | B8yTiJ10rqW1whvt2RBl3F6LgbUBmjfpur+XQb1C5qHmS4mFA/E9quv3jbOk 254 | NCUJb5+v17TlLNDbVyhPap7xlHUYW0kglgzbO3Pu3H+bsk0e7xfrUeoCB4HI 255 | 3Uiqh10KPjI4eKXqhugd0m+EnljTS8dgfg/SXWnQJg3lHvvzeKUSSgRM9MDF 256 | 9fKLm1ddB4UGJqjaCIMAPSSlMIIGrjCCBqowggSSoAMCAQICCD176SrNvxhw 257 | MA0GCSqGSIb3DQEBDAUAMEsxJzAlBgNVBAMMHkFwcGxlIFNlY3VyZSBCb290 258 | IFJvb3QgQ0EgLSBHMjETMBEGA1UECgwKQXBwbGUgSW5jLjELMAkGA1UEBhMC 259 | VVMwHhcNMTQxMjE5MjAyMzIwWhcNMzQxMjE0MjAxMzEwWjBWMTIwMAYDVQQD 260 | DClUODAxMC1Uc3NMaXZlLU1hbmlmZXN0S2V5LVJldkItRGF0YUNlbnRlcjET 261 | MBEGA1UECgwKQXBwbGUgSW5jLjELMAkGA1UEBhMCVVMwggIiMA0GCSqGSIb3 262 | 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 294 | vlK6HjZ3di5K00pVv1ypwo4yu+daog== 295 | 296 | 297 | noNonce 298 | 299 | @ServerVersion 300 | 2.1.0 301 | ApImg4Ticket 302 | 303 | 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 449 | 450 | 451 | 452 | 453 | -------------------------------------------------------------------------------- /other/shsh/0x8011.shsh: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | @ServerVersion 6 | 2.1.0 7 | ApImg4Ticket 8 | 9 | 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 138 | 00pVv1ypwo4yu+daog== 139 | 140 | generator 141 | 0xcd211884a19012aa 142 | updateInstall 143 | 144 | @ServerVersion 145 | 2.1.0 146 | ApImg4Ticket 147 | 148 | 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 243 | Tzc3GMetzb4yRJDBBuSIFJfgBFW3k/Ei6O1eT6k+rqMz/4SqrYpZCzAJFgRF 244 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH/BIIC 245 | ACJKPaKcmlyxIkSBoms404WhEZmwKJFMCuMxITut55Z2cGArcqazQpiMqI8o 246 | itW5sEPDbVx5VxPgrtWJgZjV5l6DSTHGlYpl4mmIE+c8I96ht7KrAPRGc0Fo 247 | hKdpscz1ZQgtT/P7DA/ZqU8q3VWd5RMKaie0SWFdyEw18Gk6ITZkPcgulTWW 248 | lXws7QJZmRPhRSb9cLfzMIjtj0/NbxnFr8AYz9tCuIs38NxtZL2arlhRLfUP 249 | DTYJiuXQJ4OIotRAJH5jsJB7YMbejfmEo+I7879Hb7tbt1NOrtnRZm95GoSl 250 | +JKTgtrblc91s1BxbXH2435JFmVM+q1eAorTgZkNctdTGhasPXBXhyvOSzso 251 | UJWNURY6F+IoXHRUTD34C64GjoELVC/zudMN8GUzrDISJHUO3je+toFojSsD 252 | Z0Qpx0qldEawyHvBj1ojuRg319m5ywZEgT7VE20iHVpHE/CCa3igbuuV4K0Y 253 | B8yTiJ10rqW1whvt2RBl3F6LgbUBmjfpur+XQb1C5qHmS4mFA/E9quv3jbOk 254 | NCUJb5+v17TlLNDbVyhPap7xlHUYW0kglgzbO3Pu3H+bsk0e7xfrUeoCB4HI 255 | 3Uiqh10KPjI4eKXqhugd0m+EnljTS8dgfg/SXWnQJg3lHvvzeKUSSgRM9MDF 256 | 9fKLm1ddB4UGJqjaCIMAPSSlMIIGrjCCBqowggSSoAMCAQICCD176SrNvxhw 257 | MA0GCSqGSIb3DQEBDAUAMEsxJzAlBgNVBAMMHkFwcGxlIFNlY3VyZSBCb290 258 | IFJvb3QgQ0EgLSBHMjETMBEGA1UECgwKQXBwbGUgSW5jLjELMAkGA1UEBhMC 259 | VVMwHhcNMTQxMjE5MjAyMzIwWhcNMzQxMjE0MjAxMzEwWjBWMTIwMAYDVQQD 260 | DClUODAxMC1Uc3NMaXZlLU1hbmlmZXN0S2V5LVJldkItRGF0YUNlbnRlcjET 261 | MBEGA1UECgwKQXBwbGUgSW5jLjELMAkGA1UEBhMCVVMwggIiMA0GCSqGSIb3 262 | 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 294 | vlK6HjZ3di5K00pVv1ypwo4yu+daog== 295 | 296 | 297 | noNonce 298 | 299 | @ServerVersion 300 | 2.1.0 301 | ApImg4Ticket 302 | 303 | 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 449 | 450 | 451 | 452 | 453 | -------------------------------------------------------------------------------- /other/shsh/0x8012.shsh: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | @ServerVersion 6 | 2.1.0 7 | ApImg4Ticket 8 | 9 | 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 117 | 118 | generator 119 | 0x74d950b4c9e16e56 120 | updateInstall 121 | 122 | @ServerVersion 123 | 2.1.0 124 | ApImg4Ticket 125 | 126 | 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 202 | hODCxBrNvFMSiW860KoyFUlaHWoxZBwtYIadRRG+MIeKzTeheOKgmeJVVPok 203 | TFkyDGrzIwxspxDGadQFihuY1J2tC2GOPylKzI3aVJvKSMxbS1p3c1aVGp3k 204 | wQCMWJoYN1tLwYin8/p5wXtNhLIilvpyullfepAIKm3xsLUC70Ry4BEJHjK0 205 | UxmPWR7Yij3mdh0fwIKpVnBMwnjo++pcqFYfuM/idf9oAT0GW7JKJJ+1t+Vw 206 | xllTTLcxzbzqYQ3QtQgvanEgk12SUnguifwCLehaUzKgUqGTSnbF3zDrA2bt 207 | 1Aa+16HLJHkCdsUtRyQJjGv7gpedsI2iBwOkRHiajWSnfsZq4lFnGcQp/Qet 208 | wjMWBDnT3Iv4AG0XjoNm2sNWtz35s+IO0izI+ajpywHA9lUCog98u90zoXiu 209 | cSBFmd4kD1fCVnjz7lSYJbYhups+wMym9M3dS/gu2ugYbeLg3YPvantpmyTj 210 | C7kwggauMIIGqjCCBJKgAwIBAgIIMmBMfAAypGEwDQYJKoZIhvcNAQEMBQAw 211 | SzEnMCUGA1UEAwweQXBwbGUgU2VjdXJlIEJvb3QgUm9vdCBDQSAtIEcyMRMw 212 | EQYDVQQKDApBcHBsZSBJbmMuMQswCQYDVQQGEwJVUzAeFw0xNTA5MDIyMDQw 213 | NDdaFw0zNDEyMTQyMDEzMTBaMFYxMjAwBgNVBAMMKVQ4MDEyLVRzc0xpdmUt 214 | TWFuaWZlc3RLZXktUmV2QS1EYXRhQ2VudGVyMRMwEQYDVQQKDApBcHBsZSBJ 215 | bmMuMQswCQYDVQQGEwJVUzCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoC 216 | ggIBAKK10LN/173sLimitFGJnfzUOo2fOXtFGoTXEpJc0O49ktYaNyCgoTIT 217 | 5mF2jrnqbAQ0RJUJT0dq4/IIeZ7HC4Y+WQbTntBkYytgbz3ngLDWA1KL+bnv 218 | 7XzQy2CF/U3cGlz99+L3V2ENrSxAtJDTPPa15av3PksoboPFoORbv/iu+IMe 219 | 13+TphKs5FoGceuAiXJcMRyurwDquGXHFP6SFUCYCs+QyQ9ZH9LJeqU942OS 220 | D5lL7KmMYTpIL2mJWtpt/5pkmDVHTjWf1dh6KugUVzciuKcp3CtrDAtQscTG 221 | U/xQYE9E6XC2CuCiNrL1STQAq7EvizpxkjNNj3b+w2VNIx6PQgIoO+hnnvrI 222 | 4MvqKdLPnPJwpsWzrFC/+CkGxb6byUA6dg/OTewlpO9Xjlj5whKJzT+eC2xf 223 | 9IEPh0UPsySJl1/oDhboNWijroiQ1QSfIltDVnDKKDD4YGIeJ2p8PWr2ruk3 224 | gzxLPVhfeJgL+3vwzJY+r8pjdsUogZcXtQVCGxElZG39hZZ+biIPDMyT8SZG 225 | q6yQiWIUFhh4BXmOTxvxy1PUjw/OhUh4WtQytWMnSlI4imJX2zrwZ1Je3X9f 226 | A6LycAoDhd6DR/PCB1DGJstN6DRZxEuvsqNb58jWtA2n8sERhhjwMdvGo2bM 227 | 0cDgzQvXW1UKnt7hZWncFr4spCEXAgMBAAGjggGFMIIBgTAdBgNVHQ4EFgQU 228 | 9dBtXF71T3FydBfyU2fdgz/LrJUwDAYDVR0TAQH/BAIwADAfBgNVHSMEGDAW 229 | gBRo6VlQRfFdB/k/xCb8HCdifZ4TlDAOBgNVHQ8BAf8EBAMCB4AwggEfBgoq 230 | hkiG92NkBgEPAQH/BIIBDDGCAQj/hOqFnFCBtjCBsxYETUFOUDGBqv+EkrmG 231 | SAwwChYEQk5DSKACBQD/hJK9pEQMMAoWBEJPUkSgAgUA/4SalaBPCzAJFgRD 232 | RVBPAgEB/4SaoZJQDTALFgRDSElQAgMAgBL/hJrBpE8MMAoWBENQUk+gAgUA 233 | /4SazYpDDDAKFgRDU0VDoAIFAP+Eqo2SRAwwChYERUNJRKACBQD/hZqRnk0L 234 | MAkWBFNET00CAQH/h5u53m4MMAoWBHNub26gAgUA/4T6iZRQQzBBFgRPQkpQ 235 | MTn/hKKdplQMMAoWBERHU1SgAgUA/4SqwaRPDDAKFgRFUFJPoAIFAP+Eqs2K 236 | QwwwChYERVNFQ6ACBQAwDQYJKoZIhvcNAQEMBQADggIBABcXde990z6reUu4 237 | z8aFxLXnaGUUdCum/1+gqc0R9i/V/tCxYc8p7T7lStEYdecS9dMa9DT+MvyY 238 | rcR/0sBD6oLo/TQC4+Jqc66zKuCN4PBTf5W496Al5g+a0unNJq6WH2RttVsW 239 | DOqoFa9tlqoP2Eb0Afy6jEq0Fu/llF7hUGkjuR70EUImjRK8XQtZ8tP0T/QY 240 | 1qw6PwCEXm/zNHQxn6VGIXpIRNGu165C8Lne6Vtfhh+OqAFwio35Vq3uuuNn 241 | X9MG/V7PUXxWZofnktQO9lDB48RvKwDSP0Ca4eoDl6MyK6eucdyI8TWoDvAD 242 | rFHe46FWqThJO7tEyctAOBbWsXc+riAelvgSdiIG1LvBIs47aNcAiF4Mi7YO 243 | QFXaMF7ZEtR5bu7xrFRyIVp7cG4tCGKSMt6ibOwYDPpccKOK8/pvlmEg4EJ6 244 | pHgjTzEqXE4t13qcnaz/D8o9Kqa/IuKhpZOOoK5m3X9fYN5vW5yQtpFLTU4y 245 | +twJIg62pElYm472PTXGlEBsuVNtVpi4X4CtW3ubBGHamu6bIDfvDMJa9f2m 246 | vC1vx5kIg+FaQZxWESF4RHucj3A4vSkYrZbfX8FaFPZgzqKazLCDjfRlAd3h 247 | gTnu561S+/Ndft1ov3qBRxPU+ovs0+YgzrAPSkvpTLmvk2auv3V5wcgmWazY 248 | Sg9+syTB 249 | 250 | 251 | noNonce 252 | 253 | @ServerVersion 254 | 2.1.0 255 | ApImg4Ticket 256 | 257 | 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 378 | rr91ecHIJlms2EoPfrMkwQ== 379 | 380 | 381 | 382 | 383 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | requests 3 | autodecrypt --------------------------------------------------------------------------------