├── LICENSE
├── Palera1n-icon.png
├── README.md
├── demoimg.jpg
├── device
├── ideviceinfo
└── lastdevice.txt
├── install.sh
├── palera1n.py
├── palera1n
├── CHANGELOG.md
├── COMMONISSUES.md
├── LICENSE
├── README.md
├── binaries
│ ├── Darwin
│ │ ├── Kernel64Patcher
│ │ ├── iBoot64Patcher
│ │ ├── iBootpatch2
│ │ ├── ideviceenterrecovery
│ │ ├── ideviceinfo
│ │ ├── img4
│ │ ├── iproxy
│ │ ├── irecovery
│ │ ├── jq
│ │ ├── pzb
│ │ └── sshpass
│ ├── Kernel15Patcher.ios
│ ├── Kernel16Patcher.ios
│ └── Linux
│ │ ├── Kernel64Patcher
│ │ ├── iBoot64Patcher
│ │ ├── iBootpatch2
│ │ ├── ideviceenterrecovery
│ │ ├── ideviceinfo
│ │ ├── img4
│ │ ├── iproxy
│ │ ├── irecovery
│ │ ├── jq
│ │ ├── pzb
│ │ └── sshpass
├── other
│ ├── bootlogo.im4p
│ ├── payload
│ │ ├── payload_t8010.bin
│ │ └── payload_t8015.bin
│ └── rootfs
│ │ └── jbin
│ │ └── post.sh
├── palera1n.sh
└── ramdisk
│ ├── Darwin
│ ├── Kernel64Patcher
│ ├── gtar
│ ├── iBoot64Patcher
│ ├── img4
│ ├── img4tool
│ ├── iproxy
│ ├── irecovery
│ ├── jq
│ ├── kerneldiff
│ ├── pzb
│ └── sshpass
│ ├── LICENSE
│ ├── Linux
│ ├── Kernel64Patcher
│ ├── PlistBuddy
│ ├── hfsplus
│ ├── iBoot64Patcher
│ ├── img4
│ ├── img4tool
│ ├── iproxy
│ ├── irecovery
│ ├── jq
│ ├── kerneldiff
│ ├── pzb
│ └── sshpass
│ ├── README.md
│ ├── other
│ ├── bootlogo.im4p
│ └── ramdisk.tar.gz
│ ├── shsh
│ ├── 0x7000.shsh
│ ├── 0x7001.shsh
│ ├── 0x8000.shsh
│ ├── 0x8001.shsh
│ ├── 0x8003.shsh
│ ├── 0x8010.shsh
│ ├── 0x8011.shsh
│ ├── 0x8012.shsh
│ ├── 0x8015.shsh
│ └── 0x8960.shsh
│ └── sshrd.sh
└── recovery
├── enterrecovery.sh
├── exitrecovery.sh
├── ideviceenterrecovery
├── irecovery
└── outputConsole
/LICENSE:
--------------------------------------------------------------------------------
1 | GNU GENERAL PUBLIC LICENSE
2 | Version 3, 29 June 2007
3 |
4 | Copyright (C) 2007 Free Software Foundation, Inc.
5 | Everyone is permitted to copy and distribute verbatim copies
6 | of this license document, but changing it is not allowed.
7 |
8 | Preamble
9 |
10 | The GNU General Public License is a free, copyleft license for
11 | software and other kinds of works.
12 |
13 | The licenses for most software and other practical works are designed
14 | to take away your freedom to share and change the works. By contrast,
15 | the GNU General Public License is intended to guarantee your freedom to
16 | share and change all versions of a program--to make sure it remains free
17 | software for all its users. We, the Free Software Foundation, use the
18 | GNU General Public License for most of our software; it applies also to
19 | any other work released this way by its authors. You can apply it to
20 | your programs, too.
21 |
22 | When we speak of free software, we are referring to freedom, not
23 | price. Our General Public Licenses are designed to make sure that you
24 | have the freedom to distribute copies of free software (and charge for
25 | them if you wish), that you receive source code or can get it if you
26 | want it, that you can change the software or use pieces of it in new
27 | free programs, and that you know you can do these things.
28 |
29 | To protect your rights, we need to prevent others from denying you
30 | these rights or asking you to surrender the rights. Therefore, you have
31 | certain responsibilities if you distribute copies of the software, or if
32 | you modify it: responsibilities to respect the freedom of others.
33 |
34 | For example, if you distribute copies of such a program, whether
35 | gratis or for a fee, you must pass on to the recipients the same
36 | freedoms that you received. You must make sure that they, too, receive
37 | or can get the source code. And you must show them these terms so they
38 | know their rights.
39 |
40 | Developers that use the GNU GPL protect your rights with two steps:
41 | (1) assert copyright on the software, and (2) offer you this License
42 | giving you legal permission to copy, distribute and/or modify it.
43 |
44 | For the developers' and authors' protection, the GPL clearly explains
45 | that there is no warranty for this free software. For both users' and
46 | authors' sake, the GPL requires that modified versions be marked as
47 | changed, so that their problems will not be attributed erroneously to
48 | authors of previous versions.
49 |
50 | Some devices are designed to deny users access to install or run
51 | modified versions of the software inside them, although the manufacturer
52 | can do so. This is fundamentally incompatible with the aim of
53 | protecting users' freedom to change the software. The systematic
54 | pattern of such abuse occurs in the area of products for individuals to
55 | use, which is precisely where it is most unacceptable. Therefore, we
56 | have designed this version of the GPL to prohibit the practice for those
57 | products. If such problems arise substantially in other domains, we
58 | stand ready to extend this provision to those domains in future versions
59 | of the GPL, as needed to protect the freedom of users.
60 |
61 | Finally, every program is threatened constantly by software patents.
62 | States should not allow patents to restrict development and use of
63 | software on general-purpose computers, but in those that do, we wish to
64 | avoid the special danger that patents applied to a free program could
65 | make it effectively proprietary. To prevent this, the GPL assures that
66 | patents cannot be used to render the program non-free.
67 |
68 | The precise terms and conditions for copying, distribution and
69 | modification follow.
70 |
71 | TERMS AND CONDITIONS
72 |
73 | 0. Definitions.
74 |
75 | "This License" refers to version 3 of the GNU General Public License.
76 |
77 | "Copyright" also means copyright-like laws that apply to other kinds of
78 | works, such as semiconductor masks.
79 |
80 | "The Program" refers to any copyrightable work licensed under this
81 | License. Each licensee is addressed as "you". "Licensees" and
82 | "recipients" may be individuals or organizations.
83 |
84 | To "modify" a work means to copy from or adapt all or part of the work
85 | in a fashion requiring copyright permission, other than the making of an
86 | exact copy. The resulting work is called a "modified version" of the
87 | earlier work or a work "based on" the earlier work.
88 |
89 | A "covered work" means either the unmodified Program or a work based
90 | on the Program.
91 |
92 | To "propagate" a work means to do anything with it that, without
93 | permission, would make you directly or secondarily liable for
94 | infringement under applicable copyright law, except executing it on a
95 | computer or modifying a private copy. Propagation includes copying,
96 | distribution (with or without modification), making available to the
97 | public, and in some countries other activities as well.
98 |
99 | To "convey" a work means any kind of propagation that enables other
100 | parties to make or receive copies. Mere interaction with a user through
101 | a computer network, with no transfer of a copy, is not conveying.
102 |
103 | An interactive user interface displays "Appropriate Legal Notices"
104 | to the extent that it includes a convenient and prominently visible
105 | feature that (1) displays an appropriate copyright notice, and (2)
106 | tells the user that there is no warranty for the work (except to the
107 | extent that warranties are provided), that licensees may convey the
108 | work under this License, and how to view a copy of this License. If
109 | the interface presents a list of user commands or options, such as a
110 | menu, a prominent item in the list meets this criterion.
111 |
112 | 1. Source Code.
113 |
114 | The "source code" for a work means the preferred form of the work
115 | for making modifications to it. "Object code" means any non-source
116 | form of a work.
117 |
118 | A "Standard Interface" means an interface that either is an official
119 | standard defined by a recognized standards body, or, in the case of
120 | interfaces specified for a particular programming language, one that
121 | is widely used among developers working in that language.
122 |
123 | The "System Libraries" of an executable work include anything, other
124 | than the work as a whole, that (a) is included in the normal form of
125 | packaging a Major Component, but which is not part of that Major
126 | Component, and (b) serves only to enable use of the work with that
127 | Major Component, or to implement a Standard Interface for which an
128 | implementation is available to the public in source code form. A
129 | "Major Component", in this context, means a major essential component
130 | (kernel, window system, and so on) of the specific operating system
131 | (if any) on which the executable work runs, or a compiler used to
132 | produce the work, or an object code interpreter used to run it.
133 |
134 | The "Corresponding Source" for a work in object code form means all
135 | the source code needed to generate, install, and (for an executable
136 | work) run the object code and to modify the work, including scripts to
137 | control those activities. However, it does not include the work's
138 | System Libraries, or general-purpose tools or generally available free
139 | programs which are used unmodified in performing those activities but
140 | which are not part of the work. For example, Corresponding Source
141 | includes interface definition files associated with source files for
142 | the work, and the source code for shared libraries and dynamically
143 | linked subprograms that the work is specifically designed to require,
144 | such as by intimate data communication or control flow between those
145 | subprograms and other parts of the work.
146 |
147 | The Corresponding Source need not include anything that users
148 | can regenerate automatically from other parts of the Corresponding
149 | Source.
150 |
151 | The Corresponding Source for a work in source code form is that
152 | same work.
153 |
154 | 2. Basic Permissions.
155 |
156 | All rights granted under this License are granted for the term of
157 | copyright on the Program, and are irrevocable provided the stated
158 | conditions are met. This License explicitly affirms your unlimited
159 | permission to run the unmodified Program. The output from running a
160 | covered work is covered by this License only if the output, given its
161 | content, constitutes a covered work. This License acknowledges your
162 | rights of fair use or other equivalent, as provided by copyright law.
163 |
164 | You may make, run and propagate covered works that you do not
165 | convey, without conditions so long as your license otherwise remains
166 | in force. You may convey covered works to others for the sole purpose
167 | of having them make modifications exclusively for you, or provide you
168 | with facilities for running those works, provided that you comply with
169 | the terms of this License in conveying all material for which you do
170 | not control copyright. Those thus making or running the covered works
171 | for you must do so exclusively on your behalf, under your direction
172 | and control, on terms that prohibit them from making any copies of
173 | your copyrighted material outside their relationship with you.
174 |
175 | Conveying under any other circumstances is permitted solely under
176 | the conditions stated below. Sublicensing is not allowed; section 10
177 | makes it unnecessary.
178 |
179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law.
180 |
181 | No covered work shall be deemed part of an effective technological
182 | measure under any applicable law fulfilling obligations under article
183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or
184 | similar laws prohibiting or restricting circumvention of such
185 | measures.
186 |
187 | When you convey a covered work, you waive any legal power to forbid
188 | circumvention of technological measures to the extent such circumvention
189 | is effected by exercising rights under this License with respect to
190 | the covered work, and you disclaim any intention to limit operation or
191 | modification of the work as a means of enforcing, against the work's
192 | users, your or third parties' legal rights to forbid circumvention of
193 | technological measures.
194 |
195 | 4. Conveying Verbatim Copies.
196 |
197 | You may convey verbatim copies of the Program's source code as you
198 | receive it, in any medium, provided that you conspicuously and
199 | appropriately publish on each copy an appropriate copyright notice;
200 | keep intact all notices stating that this License and any
201 | non-permissive terms added in accord with section 7 apply to the code;
202 | keep intact all notices of the absence of any warranty; and give all
203 | recipients a copy of this License along with the Program.
204 |
205 | You may charge any price or no price for each copy that you convey,
206 | and you may offer support or warranty protection for a fee.
207 |
208 | 5. Conveying Modified Source Versions.
209 |
210 | You may convey a work based on the Program, or the modifications to
211 | produce it from the Program, in the form of source code under the
212 | terms of section 4, provided that you also meet all of these conditions:
213 |
214 | a) The work must carry prominent notices stating that you modified
215 | it, and giving a relevant date.
216 |
217 | b) The work must carry prominent notices stating that it is
218 | released under this License and any conditions added under section
219 | 7. This requirement modifies the requirement in section 4 to
220 | "keep intact all notices".
221 |
222 | c) You must license the entire work, as a whole, under this
223 | License to anyone who comes into possession of a copy. This
224 | License will therefore apply, along with any applicable section 7
225 | additional terms, to the whole of the work, and all its parts,
226 | regardless of how they are packaged. This License gives no
227 | permission to license the work in any other way, but it does not
228 | invalidate such permission if you have separately received it.
229 |
230 | d) If the work has interactive user interfaces, each must display
231 | Appropriate Legal Notices; however, if the Program has interactive
232 | interfaces that do not display Appropriate Legal Notices, your
233 | work need not make them do so.
234 |
235 | A compilation of a covered work with other separate and independent
236 | works, which are not by their nature extensions of the covered work,
237 | and which are not combined with it such as to form a larger program,
238 | in or on a volume of a storage or distribution medium, is called an
239 | "aggregate" if the compilation and its resulting copyright are not
240 | used to limit the access or legal rights of the compilation's users
241 | beyond what the individual works permit. Inclusion of a covered work
242 | in an aggregate does not cause this License to apply to the other
243 | parts of the aggregate.
244 |
245 | 6. Conveying Non-Source Forms.
246 |
247 | You may convey a covered work in object code form under the terms
248 | of sections 4 and 5, provided that you also convey the
249 | machine-readable Corresponding Source under the terms of this License,
250 | in one of these ways:
251 |
252 | a) Convey the object code in, or embodied in, a physical product
253 | (including a physical distribution medium), accompanied by the
254 | Corresponding Source fixed on a durable physical medium
255 | customarily used for software interchange.
256 |
257 | b) Convey the object code in, or embodied in, a physical product
258 | (including a physical distribution medium), accompanied by a
259 | written offer, valid for at least three years and valid for as
260 | long as you offer spare parts or customer support for that product
261 | model, to give anyone who possesses the object code either (1) a
262 | copy of the Corresponding Source for all the software in the
263 | product that is covered by this License, on a durable physical
264 | medium customarily used for software interchange, for a price no
265 | more than your reasonable cost of physically performing this
266 | conveying of source, or (2) access to copy the
267 | Corresponding Source from a network server at no charge.
268 |
269 | c) Convey individual copies of the object code with a copy of the
270 | written offer to provide the Corresponding Source. This
271 | alternative is allowed only occasionally and noncommercially, and
272 | only if you received the object code with such an offer, in accord
273 | with subsection 6b.
274 |
275 | d) Convey the object code by offering access from a designated
276 | place (gratis or for a charge), and offer equivalent access to the
277 | Corresponding Source in the same way through the same place at no
278 | further charge. You need not require recipients to copy the
279 | Corresponding Source along with the object code. If the place to
280 | copy the object code is a network server, the Corresponding Source
281 | may be on a different server (operated by you or a third party)
282 | that supports equivalent copying facilities, provided you maintain
283 | clear directions next to the object code saying where to find the
284 | Corresponding Source. Regardless of what server hosts the
285 | Corresponding Source, you remain obligated to ensure that it is
286 | available for as long as needed to satisfy these requirements.
287 |
288 | e) Convey the object code using peer-to-peer transmission, provided
289 | you inform other peers where the object code and Corresponding
290 | Source of the work are being offered to the general public at no
291 | charge under subsection 6d.
292 |
293 | A separable portion of the object code, whose source code is excluded
294 | from the Corresponding Source as a System Library, need not be
295 | included in conveying the object code work.
296 |
297 | A "User Product" is either (1) a "consumer product", which means any
298 | tangible personal property which is normally used for personal, family,
299 | or household purposes, or (2) anything designed or sold for incorporation
300 | into a dwelling. In determining whether a product is a consumer product,
301 | doubtful cases shall be resolved in favor of coverage. For a particular
302 | product received by a particular user, "normally used" refers to a
303 | typical or common use of that class of product, regardless of the status
304 | of the particular user or of the way in which the particular user
305 | actually uses, or expects or is expected to use, the product. A product
306 | is a consumer product regardless of whether the product has substantial
307 | commercial, industrial or non-consumer uses, unless such uses represent
308 | the only significant mode of use of the product.
309 |
310 | "Installation Information" for a User Product means any methods,
311 | procedures, authorization keys, or other information required to install
312 | and execute modified versions of a covered work in that User Product from
313 | a modified version of its Corresponding Source. The information must
314 | suffice to ensure that the continued functioning of the modified object
315 | code is in no case prevented or interfered with solely because
316 | modification has been made.
317 |
318 | If you convey an object code work under this section in, or with, or
319 | specifically for use in, a User Product, and the conveying occurs as
320 | part of a transaction in which the right of possession and use of the
321 | User Product is transferred to the recipient in perpetuity or for a
322 | fixed term (regardless of how the transaction is characterized), the
323 | Corresponding Source conveyed under this section must be accompanied
324 | by the Installation Information. But this requirement does not apply
325 | if neither you nor any third party retains the ability to install
326 | modified object code on the User Product (for example, the work has
327 | been installed in ROM).
328 |
329 | The requirement to provide Installation Information does not include a
330 | requirement to continue to provide support service, warranty, or updates
331 | for a work that has been modified or installed by the recipient, or for
332 | the User Product in which it has been modified or installed. Access to a
333 | network may be denied when the modification itself materially and
334 | adversely affects the operation of the network or violates the rules and
335 | protocols for communication across the network.
336 |
337 | Corresponding Source conveyed, and Installation Information provided,
338 | in accord with this section must be in a format that is publicly
339 | documented (and with an implementation available to the public in
340 | source code form), and must require no special password or key for
341 | unpacking, reading or copying.
342 |
343 | 7. Additional Terms.
344 |
345 | "Additional permissions" are terms that supplement the terms of this
346 | License by making exceptions from one or more of its conditions.
347 | Additional permissions that are applicable to the entire Program shall
348 | be treated as though they were included in this License, to the extent
349 | that they are valid under applicable law. If additional permissions
350 | apply only to part of the Program, that part may be used separately
351 | under those permissions, but the entire Program remains governed by
352 | this License without regard to the additional permissions.
353 |
354 | When you convey a copy of a covered work, you may at your option
355 | remove any additional permissions from that copy, or from any part of
356 | it. (Additional permissions may be written to require their own
357 | removal in certain cases when you modify the work.) You may place
358 | additional permissions on material, added by you to a covered work,
359 | for which you have or can give appropriate copyright permission.
360 |
361 | Notwithstanding any other provision of this License, for material you
362 | add to a covered work, you may (if authorized by the copyright holders of
363 | that material) supplement the terms of this License with terms:
364 |
365 | a) Disclaiming warranty or limiting liability differently from the
366 | terms of sections 15 and 16 of this License; or
367 |
368 | b) Requiring preservation of specified reasonable legal notices or
369 | author attributions in that material or in the Appropriate Legal
370 | Notices displayed by works containing it; or
371 |
372 | c) Prohibiting misrepresentation of the origin of that material, or
373 | requiring that modified versions of such material be marked in
374 | reasonable ways as different from the original version; or
375 |
376 | d) Limiting the use for publicity purposes of names of licensors or
377 | authors of the material; or
378 |
379 | e) Declining to grant rights under trademark law for use of some
380 | trade names, trademarks, or service marks; or
381 |
382 | f) Requiring indemnification of licensors and authors of that
383 | material by anyone who conveys the material (or modified versions of
384 | it) with contractual assumptions of liability to the recipient, for
385 | any liability that these contractual assumptions directly impose on
386 | those licensors and authors.
387 |
388 | All other non-permissive additional terms are considered "further
389 | restrictions" within the meaning of section 10. If the Program as you
390 | received it, or any part of it, contains a notice stating that it is
391 | governed by this License along with a term that is a further
392 | restriction, you may remove that term. If a license document contains
393 | a further restriction but permits relicensing or conveying under this
394 | License, you may add to a covered work material governed by the terms
395 | of that license document, provided that the further restriction does
396 | not survive such relicensing or conveying.
397 |
398 | If you add terms to a covered work in accord with this section, you
399 | must place, in the relevant source files, a statement of the
400 | additional terms that apply to those files, or a notice indicating
401 | where to find the applicable terms.
402 |
403 | Additional terms, permissive or non-permissive, may be stated in the
404 | form of a separately written license, or stated as exceptions;
405 | the above requirements apply either way.
406 |
407 | 8. Termination.
408 |
409 | You may not propagate or modify a covered work except as expressly
410 | provided under this License. Any attempt otherwise to propagate or
411 | modify it is void, and will automatically terminate your rights under
412 | this License (including any patent licenses granted under the third
413 | paragraph of section 11).
414 |
415 | However, if you cease all violation of this License, then your
416 | license from a particular copyright holder is reinstated (a)
417 | provisionally, unless and until the copyright holder explicitly and
418 | finally terminates your license, and (b) permanently, if the copyright
419 | holder fails to notify you of the violation by some reasonable means
420 | prior to 60 days after the cessation.
421 |
422 | Moreover, your license from a particular copyright holder is
423 | reinstated permanently if the copyright holder notifies you of the
424 | violation by some reasonable means, this is the first time you have
425 | received notice of violation of this License (for any work) from that
426 | copyright holder, and you cure the violation prior to 30 days after
427 | your receipt of the notice.
428 |
429 | Termination of your rights under this section does not terminate the
430 | licenses of parties who have received copies or rights from you under
431 | this License. If your rights have been terminated and not permanently
432 | reinstated, you do not qualify to receive new licenses for the same
433 | material under section 10.
434 |
435 | 9. Acceptance Not Required for Having Copies.
436 |
437 | You are not required to accept this License in order to receive or
438 | run a copy of the Program. Ancillary propagation of a covered work
439 | occurring solely as a consequence of using peer-to-peer transmission
440 | to receive a copy likewise does not require acceptance. However,
441 | nothing other than this License grants you permission to propagate or
442 | modify any covered work. These actions infringe copyright if you do
443 | not accept this License. Therefore, by modifying or propagating a
444 | covered work, you indicate your acceptance of this License to do so.
445 |
446 | 10. Automatic Licensing of Downstream Recipients.
447 |
448 | Each time you convey a covered work, the recipient automatically
449 | receives a license from the original licensors, to run, modify and
450 | propagate that work, subject to this License. You are not responsible
451 | for enforcing compliance by third parties with this License.
452 |
453 | An "entity transaction" is a transaction transferring control of an
454 | organization, or substantially all assets of one, or subdividing an
455 | organization, or merging organizations. If propagation of a covered
456 | work results from an entity transaction, each party to that
457 | transaction who receives a copy of the work also receives whatever
458 | licenses to the work the party's predecessor in interest had or could
459 | give under the previous paragraph, plus a right to possession of the
460 | Corresponding Source of the work from the predecessor in interest, if
461 | the predecessor has it or can get it with reasonable efforts.
462 |
463 | You may not impose any further restrictions on the exercise of the
464 | rights granted or affirmed under this License. For example, you may
465 | not impose a license fee, royalty, or other charge for exercise of
466 | rights granted under this License, and you may not initiate litigation
467 | (including a cross-claim or counterclaim in a lawsuit) alleging that
468 | any patent claim is infringed by making, using, selling, offering for
469 | sale, or importing the Program or any portion of it.
470 |
471 | 11. Patents.
472 |
473 | A "contributor" is a copyright holder who authorizes use under this
474 | License of the Program or a work on which the Program is based. The
475 | work thus licensed is called the contributor's "contributor version".
476 |
477 | A contributor's "essential patent claims" are all patent claims
478 | owned or controlled by the contributor, whether already acquired or
479 | hereafter acquired, that would be infringed by some manner, permitted
480 | by this License, of making, using, or selling its contributor version,
481 | but do not include claims that would be infringed only as a
482 | consequence of further modification of the contributor version. For
483 | purposes of this definition, "control" includes the right to grant
484 | patent sublicenses in a manner consistent with the requirements of
485 | this License.
486 |
487 | Each contributor grants you a non-exclusive, worldwide, royalty-free
488 | patent license under the contributor's essential patent claims, to
489 | make, use, sell, offer for sale, import and otherwise run, modify and
490 | propagate the contents of its contributor version.
491 |
492 | In the following three paragraphs, a "patent license" is any express
493 | agreement or commitment, however denominated, not to enforce a patent
494 | (such as an express permission to practice a patent or covenant not to
495 | sue for patent infringement). To "grant" such a patent license to a
496 | party means to make such an agreement or commitment not to enforce a
497 | patent against the party.
498 |
499 | If you convey a covered work, knowingly relying on a patent license,
500 | and the Corresponding Source of the work is not available for anyone
501 | to copy, free of charge and under the terms of this License, through a
502 | publicly available network server or other readily accessible means,
503 | then you must either (1) cause the Corresponding Source to be so
504 | available, or (2) arrange to deprive yourself of the benefit of the
505 | patent license for this particular work, or (3) arrange, in a manner
506 | consistent with the requirements of this License, to extend the patent
507 | license to downstream recipients. "Knowingly relying" means you have
508 | actual knowledge that, but for the patent license, your conveying the
509 | covered work in a country, or your recipient's use of the covered work
510 | in a country, would infringe one or more identifiable patents in that
511 | country that you have reason to believe are valid.
512 |
513 | If, pursuant to or in connection with a single transaction or
514 | arrangement, you convey, or propagate by procuring conveyance of, a
515 | covered work, and grant a patent license to some of the parties
516 | receiving the covered work authorizing them to use, propagate, modify
517 | or convey a specific copy of the covered work, then the patent license
518 | you grant is automatically extended to all recipients of the covered
519 | work and works based on it.
520 |
521 | A patent license is "discriminatory" if it does not include within
522 | the scope of its coverage, prohibits the exercise of, or is
523 | conditioned on the non-exercise of one or more of the rights that are
524 | specifically granted under this License. You may not convey a covered
525 | work if you are a party to an arrangement with a third party that is
526 | in the business of distributing software, under which you make payment
527 | to the third party based on the extent of your activity of conveying
528 | the work, and under which the third party grants, to any of the
529 | parties who would receive the covered work from you, a discriminatory
530 | patent license (a) in connection with copies of the covered work
531 | conveyed by you (or copies made from those copies), or (b) primarily
532 | for and in connection with specific products or compilations that
533 | contain the covered work, unless you entered into that arrangement,
534 | or that patent license was granted, prior to 28 March 2007.
535 |
536 | Nothing in this License shall be construed as excluding or limiting
537 | any implied license or other defenses to infringement that may
538 | otherwise be available to you under applicable patent law.
539 |
540 | 12. No Surrender of Others' Freedom.
541 |
542 | If conditions are imposed on you (whether by court order, agreement or
543 | otherwise) that contradict the conditions of this License, they do not
544 | excuse you from the conditions of this License. If you cannot convey a
545 | covered work so as to satisfy simultaneously your obligations under this
546 | License and any other pertinent obligations, then as a consequence you may
547 | not convey it at all. For example, if you agree to terms that obligate you
548 | to collect a royalty for further conveying from those to whom you convey
549 | the Program, the only way you could satisfy both those terms and this
550 | License would be to refrain entirely from conveying the Program.
551 |
552 | 13. Use with the GNU Affero General Public License.
553 |
554 | Notwithstanding any other provision of this License, you have
555 | permission to link or combine any covered work with a work licensed
556 | under version 3 of the GNU Affero General Public License into a single
557 | combined work, and to convey the resulting work. The terms of this
558 | License will continue to apply to the part which is the covered work,
559 | but the special requirements of the GNU Affero General Public License,
560 | section 13, concerning interaction through a network will apply to the
561 | combination as such.
562 |
563 | 14. Revised Versions of this License.
564 |
565 | The Free Software Foundation may publish revised and/or new versions of
566 | the GNU General Public License from time to time. Such new versions will
567 | be similar in spirit to the present version, but may differ in detail to
568 | address new problems or concerns.
569 |
570 | Each version is given a distinguishing version number. If the
571 | Program specifies that a certain numbered version of the GNU General
572 | Public License "or any later version" applies to it, you have the
573 | option of following the terms and conditions either of that numbered
574 | version or of any later version published by the Free Software
575 | Foundation. If the Program does not specify a version number of the
576 | GNU General Public License, you may choose any version ever published
577 | by the Free Software Foundation.
578 |
579 | If the Program specifies that a proxy can decide which future
580 | versions of the GNU General Public License can be used, that proxy's
581 | public statement of acceptance of a version permanently authorizes you
582 | to choose that version for the Program.
583 |
584 | Later license versions may give you additional or different
585 | permissions. However, no additional obligations are imposed on any
586 | author or copyright holder as a result of your choosing to follow a
587 | later version.
588 |
589 | 15. Disclaimer of Warranty.
590 |
591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
599 |
600 | 16. Limitation of Liability.
601 |
602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
610 | SUCH DAMAGES.
611 |
612 | 17. Interpretation of Sections 15 and 16.
613 |
614 | If the disclaimer of warranty and limitation of liability provided
615 | above cannot be given local legal effect according to their terms,
616 | reviewing courts shall apply local law that most closely approximates
617 | an absolute waiver of all civil liability in connection with the
618 | Program, unless a warranty or assumption of liability accompanies a
619 | copy of the Program in return for a fee.
620 |
621 | END OF TERMS AND CONDITIONS
622 |
623 | How to Apply These Terms to Your New Programs
624 |
625 | If you develop a new program, and you want it to be of the greatest
626 | possible use to the public, the best way to achieve this is to make it
627 | free software which everyone can redistribute and change under these terms.
628 |
629 | To do so, attach the following notices to the program. It is safest
630 | to attach them to the start of each source file to most effectively
631 | state the exclusion of warranty; and each file should have at least
632 | the "copyright" line and a pointer to where the full notice is found.
633 |
634 |
635 | Copyright (C)
636 |
637 | This program is free software: you can redistribute it and/or modify
638 | it under the terms of the GNU General Public License as published by
639 | the Free Software Foundation, either version 3 of the License, or
640 | (at your option) any later version.
641 |
642 | This program is distributed in the hope that it will be useful,
643 | but WITHOUT ANY WARRANTY; without even the implied warranty of
644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
645 | GNU General Public License for more details.
646 |
647 | You should have received a copy of the GNU General Public License
648 | along with this program. If not, see .
649 |
650 | Also add information on how to contact you by electronic and paper mail.
651 |
652 | If the program does terminal interaction, make it output a short
653 | notice like this when it starts in an interactive mode:
654 |
655 | Copyright (C)
656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657 | This is free software, and you are welcome to redistribute it
658 | under certain conditions; type `show c' for details.
659 |
660 | The hypothetical commands `show w' and `show c' should show the appropriate
661 | parts of the General Public License. Of course, your program's commands
662 | might be different; for a GUI interface, you would use an "about box".
663 |
664 | You should also get your employer (if you work as a programmer) or school,
665 | if any, to sign a "copyright disclaimer" for the program, if necessary.
666 | For more information on this, and how to apply and follow the GNU GPL, see
667 | .
668 |
669 | The GNU General Public License does not permit incorporating your program
670 | into proprietary programs. If your program is a subroutine library, you
671 | may consider it more useful to permit linking proprietary applications with
672 | the library. If this is what you want to do, use the GNU Lesser General
673 | Public License instead of this License. But first, please read
674 | .
675 |
--------------------------------------------------------------------------------
/Palera1n-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/Palera1n-icon.png
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # palera1n_gui
2 |
3 |
4 |
palera1n Legacy (gui version)
5 |
6 | This is a gui version of Palera1n jailbreak (ios 15.x-16.x) form Laurin226
7 |
8 | Change Log
9 | •
10 | Twitter
11 | •
12 | My Twitter
13 |
Here is the original Github: Palera1n
14 |
15 | On ios 16.x you have to enable developer mode (before you can enable it, you must sideload an app)
16 | On A11 and A10 devices you must disable passcode, on ios 16 you must never set a passcode, if you had a passcode you have to restore with itunes
17 | Here you can download the loader ipa: Palera1n.ipa
18 | Here you can donate the Palera1n developers: Patreon
19 | How does it work: It boots the device with multiple patches required. On first run, it'll boot a ramdisk which dumps your onboard blob, creates a fakefs (if using semi tethered), installs the loader app, and patches your kernel.
20 |
21 | # Credits
22 |
23 | Python3MacApp LearnerTemplate creator:
24 | ios_euphoria
25 |
26 | Original palera1n credits:
27 | - [Nathan](https://github.com/verygenericname)
28 | - The ramdisk that dumps blobs, installs pogo to tips app, and duplicates rootfs is a slimmed down version of [SSHRD_Script](https://github.com/verygenericname/SSHRD_Script)
29 | - For modified [restored_external](https://github.com/verygenericname/sshrd_SSHRD_Script)
30 | - Also helped Mineek getting the kernel up and running and with the patches
31 | - Helping with adding multiple device support
32 | - Fixing issues relating to camera.. etc by switching to fsboot
33 | - [iBoot64Patcher fork](https://github.com/verygenericname/iBoot64Patcher)
34 | - [Mineek](https://github.com/mineek)
35 | - For the patching and booting commands
36 | - Adding tweak support
37 | - For patchfinders for RELEASE kernels
38 | - [Kernel15Patcher](https://github.com/mineek/PongoOS/tree/iOS15/checkra1n/Kernel15Patcher)
39 | - [Kernel64Patcher](https://github.com/mineek/Kernel64Patcher)
40 | - [Amy](https://github.com/elihwyma) for the [Pogo](https://github.com/elihwyma/Pogo) app
41 | - [checkra1n](https://github.com/checkra1n) for the base of the kpf
42 | - [nyuszika7h](https://github.com/nyuszika7h) for the script to help get into DFU
43 | - [the Procursus Team](https://github.com/ProcursusTeam) for the amazing [bootstrap](https://github.com/ProcursusTeam/Procursus)
44 | - [F121](https://github.com/F121Live) for helping test
45 | - [m1sta](https://github.com/m1stadev) for [pyimg4](https://github.com/m1stadev/PyIMG4)
46 | - [tihmstar](https://github.com/tihmstar) for [pzb](https://github.com/tihmstar/partialZipBrowser)/original [iBoot64Patcher](https://github.com/tihmstar/iBoot64Patcher)/original [liboffsetfinder64](https://github.com/tihmstar/liboffsetfinder64)/[img4tool](https://github.com/tihmstar/img4tool)
47 | - [xerub](https://github.com/xerub) for [img4lib](https://github.com/xerub/img4lib) and [restored_external](https://github.com/xerub/sshrd) in the ramdisk
48 | - [Cryptic](https://github.com/Cryptiiiic) for [iBoot64Patcher](https://github.com/Cryptiiiic/iBoot64Patcher) fork, and [liboffsetfinder64](https://github.com/Cryptiiiic/liboffsetfinder64) fork
49 | - [libimobiledevice](https://github.com/libimobiledevice) for several tools used in this project (irecovery, ideviceenterrecovery etc), and [nikias](https://github.com/nikias) for keeping it up to date
50 | - [Nick Chan](https://github.com/asdfugil) general help with patches.
51 | - [Sam Bingner](https://github.com/sbingner) for [Substitute](https://github.com/sbingner/substitute)
52 | - [Serena](https://github.com/SerenaKit) for helping with boot ramdisk.
53 |
54 |
--------------------------------------------------------------------------------
/demoimg.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/demoimg.jpg
--------------------------------------------------------------------------------
/device/ideviceinfo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/device/ideviceinfo
--------------------------------------------------------------------------------
/device/lastdevice.txt:
--------------------------------------------------------------------------------
1 | ActivationState: Activated
2 | ActivationStateAcknowledged: true
3 | BasebandActivationTicketVersion: V2
4 | BasebandCertId: 524245983
5 | BasebandChipID: 101
6 | BasebandKeyHashInformation:
7 | AKeyStatus: 0
8 | SKeyHash: u+/tcCwvaQ+1Y9t40I4yegCEmB28mALlaROhaIVGBWo=
9 | SKeyStatus: 0
10 | BasebandMasterKeyHash: 8CB15EE4C8002199070D9500BB8FB183B02713A5CA2A6B92DB5E75CE15536182
11 | BasebandRegionSKU: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
12 | BasebandSerialNumber: 0wEgaZAAydF4z8qE
13 | BasebandStatus: BBInfoAvailable
14 | BasebandVersion: 5.03.01
15 | BluetoothAddress: e4:2b:34:83:01:9c
16 | BoardId: 10
17 | BootSessionID: 35D5B295-596C-4770-BA85-7332E62516FE
18 | BrickState: false
19 | BuildVersion: 20B110
20 | CPUArchitecture: arm64
21 | CarrierBundleInfoArray[1]:
22 | 0:
23 | CFBundleIdentifier: com.apple.Vodafone_de
24 | CFBundleVersion: 52.0
25 | GID1: ff
26 | IntegratedCircuitCardIdentity: 89492021186022198100
27 | InternationalMobileSubscriberIdentity: 262022117548257
28 | MCC: 262
29 | MNC: 02
30 | SIMGID1: /w==
31 | Slot: kOne
32 | kCTPostponementInfoAvailable: SIMCarrierInfo
33 | CertID: 524245983
34 | ChipID: 32789
35 | ChipSerialNo: 0wEgaZAAydF4z8qE
36 | DeviceClass: iPhone
37 | DeviceColor: 1
38 | DeviceName: iPhone 8
39 | DieID: 4619666966954030
40 | EthernetAddress: e4:2b:34:83:01:9d
41 | FirmwareVersion: iBoot-8419.40.112
42 | FusingStatus: 3
43 | GID1: ff
44 | HardwareModel: D201AP
45 | HardwarePlatform: t8015
46 | HasSiDP: true
47 | HostAttached: true
48 | IntegratedCircuitCardIdentity: 89492021186022198100
49 | InternationalMobileEquipmentIdentity: 359494087912178
50 | InternationalMobileSubscriberIdentity: 262022117548257
51 | InternationalMobileSubscriberIdentityOverride: false
52 | MLBSerialNumber: FG380640ANBJ0WYA3
53 | MobileSubscriberCountryCode: 262
54 | MobileSubscriberNetworkCode: 02
55 | ModelNumber: MQ6G2
56 | NonVolatileRAM:
57 | StartupMute: MQ==
58 | SystemAudioVolumeSaved: dHJ1ZQ==
59 | allow-root-hash-mismatch: MQ==
60 | auto-boot: dHJ1ZQ==
61 | backlight-level: MTUxMQ==
62 | backlight-nits: MHgwMGFiODhkYw==
63 | boot-args:
64 | boot-breadcrumbs: MWMwMDJiKDIwMDc1MDApIDMwMDBjKDY5NjI2NTYzKSA0MDA0MDAxYSA0MDA0MDAxMyA0MDA0MDAxMSA0MDA0MDAxYyAzMDAwZCA8RE9ORT4gPENPTU1JVD4gPEJPT1Q+IDFjMDAyYigyMDA3NTAwKSAzMDAwYyg2OTYyNjU2MykgNDAwNDAwMWEgNDAwNDAwMTMgNDAwNDAwMTEgNDAwNDAwMWMgMzAwMGQgPERPTkU+IDxDT01NSVQ+IA==
65 | bootdelay: MA==
66 | com.apple.System.fp-state: v9Z7KgAAAABoAQAAAAAAAL/Weyo=
67 | com.apple.System.tz0-size: MHgxN0NDMDAw
68 | fm-account-masked: bOKAouKAouKAouKAouKAokBn4oCi4oCi4oCi4oCi4oCiLm5ldA==
69 | fm-activation-locked: WUVT
70 | fm-spkeys: YnBsaXN0MDDWAQIDBAUGBwgJCgsUUXBRc1FsUWJRdlFpTxA5BG9aFNiirq8NrEWl+O8UNLa1p3t0MrmHcTAOFcF6ejtt7iF78X+RS3/Oulax81PSnu181tuL0ALdTxAgDCfZ7Xa7gYiv0q/GMRFHXDY2ftHvrsj+6hp/E8+wK1RPEBDfi7fBqhRDy40YUf3eUNYxM0HExK7Ba/Xo0gwNDhNRMVEy0g8QERJRbFFzEAAQYNIPEBESEAEIFRcZGx0fIV2Ak5yho6WqrK6wsrcAAAAAAAABAQAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAuQ==
71 | fm-spstatus: WUVT
72 | nonce-seeds: AgAAAAAAAAAAADAAAAAAAAAAuhCkZ0ojD3PcUi7DrXXzwenBf4xqg9MTUeSWize79mVfYFBiC+fM/WL6vCpQ+mHPAQkAAAAAAAAAAAAAAAAAAAD9vbtk3KcMRkp+sXwX7y6WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEqXSt068cYFARKxjJ6+OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAClcgx4O/7AbDkP6dUaGX7kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOnovaTTR2q0ANZdnM19NqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJfJ385rQDyyqeGP2fhN3DQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADBo8z1uV0L+ugKAYfpYvkcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3EEnxeIXfylBXKPD+5sNkAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAgdTYxBjCjSjupl3wrsP88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHfJ3sCPJn50NWfORIYfS94AAAAAAAAAAAAAAAAAAAAA
73 | obliteration: RUFDUyBEb25lIEAxNjc1MTcxNTU0LCBDYWxsZXI6IE4vQSwgUmVhc29uOiBEaXNlbWJhcmsgW2dGOiAweDAwMDAwMDAwMDAwMDAwMDBd
74 | usbcfwflasherResult: Tm8gZXJyb3Jz
75 | PRIVersion_Major: 0
76 | PRIVersion_Minor: 0
77 | PRIVersion_ReleaseNo: 5
78 | PairRecordProtectionClass: 4
79 | PartitionType: GUID_partition_scheme
80 | PasswordProtected: false
81 | PhoneNumber: +49 152 08314964
82 | PkHash: Hz9b38WSRX/cE6qam0xEfaM6v7nHw0ZdWjTPu2WOXVU=
83 | ProductName: iPhone OS
84 | ProductType: iPhone10,4
85 | ProductVersion: 16.1.2
86 | ProductionSOC: true
87 | ProtocolVersion: 2
88 | ProximitySensorCalibration: f3oABTIAHgDaRpZBuWjhQQAAyEJCU3NBQ56mQQAAFkNCU3NBQ56mQQAAFkPtzzND4hiVwDymn0SeVqBEQyKhROA6okSLS9RBRjXaQaHJ60HH/etBAAAgQlNyDEPBEgJCAABIQlLh1UM1MNVDVkULRt4SiEMxqTwgASMIGnPWm0W9XatDtAZwRQMAAAAAAACG
89 | RegionInfo: ZD/A
90 | SIMGID1: /w==
91 | SIMStatus: kCTSIMSupportSIMStatusReady
92 | SIMTrayStatus: kCTSIMSupportSIMTrayInsertedWithSIM
93 | SerialNumber: F4GW7BJTJC67
94 | SoftwareBehavior: BQQAAAAAAAAAAAAAAAAAAA==
95 | SoftwareBundleVersion:
96 | SupportedDeviceFamilies[1]:
97 | 0: 1
98 | TelephonyCapability: true
99 | TimeIntervalSince1970: 1675622919.017865
100 | TimeZone: Europe/Berlin
101 | TimeZoneOffsetFromUTC: 3600.000000
102 | TrustedHostAttached: true
103 | UniqueChipID: 4619666966954030
104 | UniqueDeviceID: 6f816bae100a04143496166739d8c36158d87712
105 | UseRaptorCerts: true
106 | Uses24HourClock: false
107 | WiFiAddress: e4:2b:34:83:01:9b
108 | kCTPostponementInfoPRIVersion: 0.0.5
109 | kCTPostponementInfoServiceProvisioningState: true
110 | kCTPostponementStatus: kCTPostponementStatusActivated
111 |
--------------------------------------------------------------------------------
/install.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | echo ""
4 | echo "
5 | ░░░░░░░░░░░░░░░░░░▄░░░░░░░░░░░░░░░░░░░░░
6 | ░░░░░░░░░░░░░░░░░░▌▄▄▄▀█▄░░░░░░░░░░░░░░░
7 | ░░░░░░░░░░░░░░░░░░█░░░░██░░░░░░░░░░░░░░░
8 | ░░░░░░░░░░░░░░░░░░█▄▄█▀▀░░░░░░░░░░░░░░░░
9 | ░░░░░░░░░░░░▄▄░░░░▌░░░░░░░░░░░░░░░░░░░░░
10 | ░░░░░░░░░██▀░░▀▀█▐░░░░▄▄▄░░░░░░░░░░░░░░░
11 | ░░░░░░░█░░░░░░░░░█▌░█░░░░▀█░░░░░░░░░░░░░
12 | ░░░░░░░▌░░░░░░░░░▐█▀░░░░░░░░█░░░░░░░░░░░
13 | ░░░░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
14 | ░░░░░░▌░░░░░░░░░░░░░░░░░░░░░░▌░░░░░░░░░░
15 | ░░░░░░▌░░░░░░░░░░░░░░░░░░░░░░█░░░░░░░░░░
16 | ░░░░░░▌░░░░░░░░░░░░░░░░░░░░░░▐░░░░░░░░░░
17 | ░░░░░░▌░░░░░░░░░░░░░░░░░░░░░░▐░░░░░░░░░░
18 | ░░░░░░▌░░░░░░░░░░░░░░░░░░░░░░█░░░░░░░░░░
19 | ░░░░░░█░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
20 | ░░░░░░▐░░░░░░░░░░░░░░░░░░░░░█░░░░░░░░░░░
21 | ░░░░░░░█▄░░░░░░░░░░░░░░░░░░░▌░░░░░░░░░░░
22 | ░░░░░░░░░▀▄▄░░░░░░▀█░░░░░░░█░░░░░░░░░░░░
23 | ░░░░░░░░░░░░▀▀▄▄▄▄▌▐▄▄▄▄▄█░░░░░░░░░░░░░░
24 | ░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░
25 | "
26 | echo ""
27 | echo "INSTALLING DEPENDENCIES required for Palera1n gui..."
28 | echo ""
29 |
30 | #Part 1
31 | export PATH=/usr/local/bin:$PATH
32 | which brew > /dev/null
33 | if [ $? -ne 0 ]; then
34 | # Check for Homebrew, install if we don't have it
35 | if test ! $(which brew); then
36 | echo "Installing homebrew..."
37 | /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
38 | echo ''
39 | fi
40 | fi
41 |
42 | echo Enter your Mac login password:
43 | sudo -v
44 |
45 | sudo rm -rf dependencies
46 | sudo mkdir dependencies
47 | cd dependencies
48 |
49 | echo "If Xcode launches... INSTALL IT!!!"
50 | xcode-select --install
51 | echo "Xcode done."
52 |
53 | echo " "
54 | echo Install the Command Line Tools if prompted.
55 | echo If you see an xcode error ignore it.
56 | echo " "
57 |
58 | brew install libusb
59 |
60 | echo "Running part 2 of dependencies..."
61 | sleep 2
62 |
63 | echo ""
64 | echo ""
65 | echo ""
66 | echo "INSTALLING DEPENDENCIES PART 2..."
67 | echo ""
68 |
69 | # Check for sshpass, install if we don't have it
70 | echo "Installing sshpass..."
71 | brew install esolitos/ipa/sshpass
72 | echo ''
73 | # Check for iproxy, install if we don't have it
74 | echo "Installing iproxy, ideviceinfo, ideviceenterrecovery..."
75 | brew install libimobiledevice
76 | echo ''
77 |
78 | echo "Installing brew python..."
79 | brew install python3
80 | echo ""
81 | # Install pyenv to control python versions on mac
82 | echo "Installing pyenv..."
83 | brew install pyenv
84 | echo ""
85 | echo "Also Installing Python 3.10 🐍..."
86 | pyenv install 3.10
87 | echo ""
88 | echo "Installing tk for GUI..."
89 | pip install tk
90 | brew install python-tk@3.10
91 | echo ""
92 | echo "Installing pillow..."
93 | pip3 install Pillow
94 | echo ""
95 | echo "Quarantine our files..."
96 | sudo xattr -rd com.apple.quarantine ./
97 | echo "Quarantined!"
98 | echo ""
99 | echo "Quarantine our files..."
100 | sudo chmod 755 ./
101 | echo "Quarantined!"
102 | echo "FINISHED INSTALLING DEPENDECIES!!!"
103 | echo ""
104 | echo "DONE!!"
105 | echo ""
106 | exit 1
107 |
--------------------------------------------------------------------------------
/palera1n.py:
--------------------------------------------------------------------------------
1 | # import system functions
2 | import os
3 | import time
4 | import re
5 | import tkinter as tk
6 | from tkinter import *
7 | from tkinter import messagebox
8 | from tkinter.simpledialog import askstring
9 | from tkinter.messagebox import showinfo
10 | from subprocess import run
11 | import subprocess
12 | # load images in Tkinter python
13 | from PIL import ImageTk, Image
14 | # web
15 | import webbrowser
16 | # sounds
17 | # from pygame import mixer
18 |
19 | # Designed and developed by @ios_euphoria
20 |
21 | # frame settings
22 | root = tk.Tk()
23 | frame = tk.Frame(root, width="500", height="250")
24 | frame.pack(fill=BOTH,expand=True)
25 | #tk.Entry(root).pack(fill='x')
26 |
27 | # uses current directory to load the image file for the icon
28 | root.iconphoto(False, tk.PhotoImage(file='Palera1n-icon.png'))
29 |
30 | LAST_CONNECTED_UDID = ""
31 | LAST_CONNECTED_IOS_VER = ""
32 |
33 | def detectDevice():
34 | global LAST_CONNECTED_UDID, LAST_CONNECTED_IOS_VER
35 | #step 1 technically
36 | print("Searching for connected device...")
37 | os.system("idevicepair unpair")
38 | os.system("idevicepair pair")
39 | os.system("./device/ideviceinfo > ./device/lastdevice.txt")
40 |
41 | time.sleep(2)
42 |
43 | f = open("./device/lastdevice.txt", "r")
44 | fileData = f.read()
45 | f.close()
46 |
47 | if("ERROR:" in fileData):
48 | #no device was detected, so retry user!
49 | print("ERROR: No device found!")
50 |
51 | messagebox.showinfo("No device detected! 0x404","Try disconnecting and reconnecting your device.")
52 | else:
53 | #we definitely have something connected...
54 |
55 | #find the UDID
56 | start = 'UniqueDeviceID: '
57 | end = 'UseRaptorCerts:'
58 | s = str(fileData)
59 |
60 | foundData = s[s.find(start)+len(start):s.rfind(end)]
61 | UDID = str(foundData)
62 | LAST_CONNECTED_UDID = str(UDID)
63 |
64 | #find the iOS
65 | #we definitely have something connected...
66 | start2 = 'ProductVersion: '
67 | end2 = 'ProductionSOC:'
68 | s2 = str(fileData)
69 |
70 | foundData2 = s2[s.find(start2)+len(start2):s2.rfind(end2)]
71 | deviceIOS = str(foundData2)
72 | LAST_CONNECTED_IOS_VER = str(deviceIOS)
73 |
74 | if(len(UDID) > 38):
75 | #stop automatic detection
76 | timerStatus = 0
77 |
78 | print("Found UDID: "+LAST_CONNECTED_UDID)
79 | messagebox.showinfo("iDevice is detected!","Found iDevice on iOS "+LAST_CONNECTED_IOS_VER)
80 | # cbeginExploit10["state"] = "normal"
81 | # cbeginExploit2["state"] = "normal"
82 |
83 | #messagebox.showinfo("Ready to begin!","We are ready to start jailbreak!")
84 |
85 | #cbeginExploit10["state"] = "normal"
86 |
87 | else:
88 | print("Couldn't find your device")
89 | messagebox.showinfo("Somethings missing! 0x405","Try disconnecting and reconnecting your device.")
90 |
91 |
92 | def showDFUMessage():
93 | messagebox.showinfo("Step 1","Put your iDevice into DFU mode.\n\nClick Ok once its ready in DFU mode to proceed.")
94 |
95 | def startpalera1n():
96 | global LAST_CONNECTED_UDID, LAST_CONNECTED_IOS_VER
97 |
98 | #iOSVER = str(LAST_CONNECTED_IOS_VER)
99 | global LAST_CONNECTED_UDID, LAST_CONNECTED_IOS_VER
100 | # step 1 technically
101 | print("Searching for connected device...")
102 | os.system("idevicepair unpair")
103 | os.system("idevicepair pair")
104 | os.system("./device/ideviceinfo > ./device/lastdevice.txt")
105 |
106 | time.sleep(2)
107 |
108 | f = open("./device/lastdevice.txt", "r")
109 | fileData = f.read()
110 | f.close()
111 |
112 | if ("ERROR:" in fileData):
113 | # no device was detected, so retry user!
114 | print("ERROR: No device found!")
115 |
116 | messagebox.showinfo("No device detected! 0x404", "Try disconnecting and reconnecting your device.")
117 | else:
118 | # we definitely have something connected...
119 |
120 | # find the UDID
121 | start = 'UniqueDeviceID: '
122 | end = 'UseRaptorCerts:'
123 | s = str(fileData)
124 |
125 | foundData = s[s.find(start) + len(start):s.rfind(end)]
126 | UDID = str(foundData)
127 | LAST_CONNECTED_UDID = str(UDID)
128 |
129 | # find the iOS
130 | # we definitely have something connected...
131 | start2 = 'ProductVersion: '
132 | end2 = 'ProductionSOC:'
133 | s2 = str(fileData)
134 |
135 | foundData2 = s2[s.find(start2) + len(start2):s2.rfind(end2)]
136 | deviceIOS = str(foundData2)
137 | LAST_CONNECTED_IOS_VER = str(deviceIOS)
138 |
139 | if (len(UDID) > 38):
140 | # stop automatic detection
141 | timerStatus = 0
142 |
143 | print("Found UDID: " + LAST_CONNECTED_UDID)
144 | messagebox.showinfo("iDevice is detected!", "Found iDevice on iOS " + LAST_CONNECTED_IOS_VER)
145 | # cbeginExploit10["state"] = "normal"
146 | # cbeginExploit2["state"] = "normal"
147 |
148 | # messagebox.showinfo("Ready to begin!","We are ready to start jailbreak!")
149 |
150 | # cbeginExploit10["state"] = "normal"
151 |
152 | else:
153 | print("Couldn't find your device")
154 | messagebox.showinfo("Somethings missing! 0x405", "Try disconnecting and reconnecting your device.")
155 |
156 | #check if theres a valid string to continue to reversing jb
157 | if(len(LAST_CONNECTED_IOS_VER) < 2):
158 | showinfo('jailbreak Failed', 'Give me a valid iOS version.')
159 | else:
160 | showinfo('Ready to Jailbreak...', 'Hi, iOS '+str(LAST_CONNECTED_IOS_VER)+'. \n\nWe will now attempt to jailbreak iOS '+str(LAST_CONNECTED_IOS_VER)+' Semi-Tethered.')
161 | print("Starting jailbreak...")
162 | os.system("idevicepair unpair")
163 | os.system("idevicepair pair")
164 | os.system(f"cd ./palera1n/ && ./palera1n.sh --tweaks --semi-tethered {LAST_CONNECTED_IOS_VER}")
165 |
166 | print("Device is jailbroken!\n")
167 | showinfo('jailbreak Success!', 'Device is now jailbroken!')
168 |
169 |
170 | def removepalera1n():
171 | global LAST_CONNECTED_UDID, LAST_CONNECTED_IOS_VER
172 |
173 | # iOSVER = str(LAST_CONNECTED_IOS_VER)
174 | global LAST_CONNECTED_UDID, LAST_CONNECTED_IOS_VER
175 | # step 1 technically
176 | print("Searching for connected device...")
177 | os.system("idevicepair unpair")
178 | os.system("idevicepair pair")
179 | os.system("./device/ideviceinfo > ./device/lastdevice.txt")
180 |
181 | time.sleep(2)
182 |
183 | f = open("./device/lastdevice.txt", "r")
184 | fileData = f.read()
185 | f.close()
186 |
187 | if ("ERROR:" in fileData):
188 | # no device was detected, so retry user!
189 | print("ERROR: No device found!")
190 |
191 | messagebox.showinfo("No device detected! 0x404", "Try disconnecting and reconnecting your device.")
192 | else:
193 | # we definitely have something connected...
194 |
195 | # find the UDID
196 | start = 'UniqueDeviceID: '
197 | end = 'UseRaptorCerts:'
198 | s = str(fileData)
199 |
200 | foundData = s[s.find(start) + len(start):s.rfind(end)]
201 | UDID = str(foundData)
202 | LAST_CONNECTED_UDID = str(UDID)
203 |
204 | # find the iOS
205 | # we definitely have something connected...
206 | start2 = 'ProductVersion: '
207 | end2 = 'ProductionSOC:'
208 | s2 = str(fileData)
209 |
210 | foundData2 = s2[s.find(start2) + len(start2):s2.rfind(end2)]
211 | deviceIOS = str(foundData2)
212 | LAST_CONNECTED_IOS_VER = str(deviceIOS)
213 |
214 | if (len(UDID) > 38):
215 | # stop automatic detection
216 | timerStatus = 0
217 |
218 | print("Found UDID: " + LAST_CONNECTED_UDID)
219 | messagebox.showinfo("iDevice is detected!", "Found iDevice on iOS " + LAST_CONNECTED_IOS_VER)
220 | # cbeginExploit10["state"] = "normal"
221 | # cbeginExploit2["state"] = "normal"
222 |
223 | # messagebox.showinfo("Ready to begin!","We are ready to start jailbreak!")
224 |
225 | # cbeginExploit10["state"] = "normal"
226 |
227 | else:
228 | print("Couldn't find your device")
229 | messagebox.showinfo("Somethings missing! 0x405", "Try disconnecting and reconnecting your device.")
230 |
231 | #check if theres a valid string to continue to reversing jb
232 | if(len(LAST_CONNECTED_IOS_VER) < 2):
233 | showinfo('jailbreak Failed', 'Give me a valid iOS version.')
234 | else:
235 | showinfo('Ready to remove Jailbreak...', 'Hi, iOS '+str(LAST_CONNECTED_IOS_VER)+'. \n\nWe will now attempt to remove jailbreak on iOS '+str(LAST_CONNECTED_IOS_VER)+' Semi-Tethered.')
236 | print("Starting removing jailbreak...")
237 | os.system("idevicepair unpair")
238 | os.system("idevicepair pair")
239 | os.system(f"cd ./palera1n/ && ./palera1n.sh --restorerootfs --tweaks {LAST_CONNECTED_IOS_VER}")
240 |
241 | def enterRecMode():
242 | print("Kicking device into recovery mode...")
243 | os.system("./recovery/enterrecovery.sh")
244 |
245 | def exitRecMode():
246 | print("Kicking device out recovery mode...")
247 | os.system("./recovery/exitrecovery.sh")
248 |
249 | def callback(url):
250 | webbrowser.open_new_tab(url)
251 |
252 | def quitProgram():
253 | print("Exiting...")
254 | os.system("exit")
255 |
256 | def opentwitter():
257 | webbrowser.open('https://www.twitter.com/palera1n', new=2)
258 |
259 |
260 | root.title('palera1n gui - Made by @laurin2261')
261 | frame.pack()
262 |
263 | #set image and resize it
264 | #img2 = Image.open("racoon.png")
265 | #frame2 = PhotoImage(file=imagefilename, format="gif -index 2")
266 | #NewIMGSize2 = img2.resize((120,120), Image.ANTIALIAS)
267 | #new_image2 = ImageTk.PhotoImage(NewIMGSize2)
268 | #label = Label(frame, image = new_image2)
269 | #label.place(x=235, y=10)
270 |
271 | #BIG title on program
272 | mainText = Label(root, text="palera1n gui ",font=('Helveticabold', 24))
273 | mainText.place(x=170, y=70)
274 |
275 | #label
276 | my_label2 = Label(frame,
277 | text = "Designed to run on ios 15-16")
278 | my_label2.place(x=170, y=130)
279 |
280 | #label
281 | my_label3 = Label(frame,
282 | text = "ver 1.0")
283 | my_label3.place(x=10, y=220)
284 |
285 | cButton1 = tk.Button(frame,
286 | text="Check Device",
287 | command=detectDevice,
288 | state="normal")
289 | cButton1.place(x=60, y=160)
290 |
291 | cButton2 = tk.Button(frame,
292 | text="Run palera1n",
293 | command=startpalera1n,
294 | state="normal")
295 | cButton2.place(x=180, y=160)
296 | cButton3 = tk.Button(frame,
297 | text="remove palera1n",
298 | command=removepalera1n,
299 | state="normal")
300 | cButton3.place(x=295, y=160)
301 | cButton4 = tk.Button(frame,
302 | text="enter recovery",
303 | command=enterRecMode,
304 | state="normal")
305 | cButton4.place(x=10, y=10)
306 | cButton5 = tk.Button(frame,
307 | text="exit recovery",
308 | command=exitRecMode,
309 | state="normal")
310 | cButton5.place(x=380, y=10)
311 | #Create a Label to display the link
312 | link = Label(root, text="Made this gui @laurin2261",font=('Helveticabold', 12), cursor="hand2")
313 | link.place(x=165, y=220)
314 | link.bind("", lambda e:
315 | callback("https://twitter.com/laurin2261"))
316 |
317 | cbeginExploit2 = tk.Button(frame,
318 | text="Twitter",
319 | command=opentwitter,
320 | state="normal")
321 | cbeginExploit2.place(x=380, y=210)
322 |
323 | root.geometry("500x250")
324 |
325 | root.resizable(False, False)
326 |
327 | root.eval('tk::PlaceWindow . center')
328 |
329 |
330 | root.mainloop()
331 |
332 |
--------------------------------------------------------------------------------
/palera1n/CHANGELOG.md:
--------------------------------------------------------------------------------
1 | # Changelog
2 |
3 | ## 1.4.1
4 | - ibot.patched fix
5 | - Use payload on the X
6 | - Other random changes/fixes
7 |
8 | ## 1.4.0
9 |
10 | - Does not mount user data partition for iPhone X compatibility, isn't even really needed anymore
11 | - Deploys files to the rootfs (fakefs if needed)
12 | - Fix deviceid finding
13 | - Use apticket.der because dumping rdisk seems to freeze
14 | - Add /.installed_palera1n with info
15 | - uicache loader app on boot (no more Tips app hijacking)
16 | - Fix rootless
17 | - Webkit fix on 16
18 | - Switch to local boot
19 | - Fix home button on iPhone 7(+) and 8(+)
20 | - Increase stability
21 | - Supports 15.0-16.2 on all checkm8 devices
22 |
23 | ## 1.3.0
24 |
25 | - Fully fix deep sleep bug
26 | - Supports 15.0-15.7.1 on all checkm8 devices
27 | - Increase stability
28 | - Fix TrollStore, camera, and screen recording
29 |
30 | ## 1.2.0
31 |
32 | - Numerous fixes
33 | - Let Pogo install tweak support
34 |
35 | ## 1.1.1
36 |
37 | - Support iPad beta URLs
38 | - Make sure auto-boot is always set to false (unless restoring rootfs)
39 | - Wait for sshd to start before running postboot
40 | - Fix Tips check error
41 | - Fix --restorerootfs
42 |
43 | ## 1.1.0
44 |
45 | - Check if Tips is installed
46 | - Only prompt for disclaimer once
47 | - Check for DFU
48 |
--------------------------------------------------------------------------------
/palera1n/COMMONISSUES.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | # Common Issues
5 |
6 |
7 |
8 | ## Table of Contents
9 |
10 | 1. [GLIBC not found](#glibc-not-found)
11 | 2. ["Booted device" but not booted](#booted-device-but-not-booted)
12 | 3. [NewTerm not launching](#newterm-not-launching)
13 | 4. [palera1n/mineek repo not working](#palera1nmineek-repo-not-working)
14 | 5. [Procursus "killed 9"](#procursus-killed-9)
15 | 6. [App crashes on open](#app-crashes-on-open)
16 | 7. ["Killed" issue (*not* "Killed: 9")](#killed-issue-not-killed-9)
17 | 8. [Error while loading shared libraries: libssl.so.1.1](#error-while-loading-shared-libraries-libsslso11)
18 | 9. [Please reinstall Sileo via SSH](#please-reinstall-sileo-via-ssh)
19 | 10. [Loader app not appearing](#loader-app-not-appearing)
20 | 11. [Your local changes would be overwritten by checkout](#your-local-changes-would-be-overwritten-by-checkout)
21 | 12. [Could not connect to lockdownd](#could-not-connect-to-lockdownd)
22 | 13. [Package is in a very bad inconsistent state](#package-is-in-a-very-bad-inconsistent-state)
23 | 14. [Error installing bootstrap. Status: -1](#error-installing-bootstrap-status--1)
24 | 15. [jbinit DIED!](#jbinit-died)
25 | 16. [Daemons crashing on iOS 16.2+](#daemons-crashing-on-ios-162)
26 | 17. [Panics making loader not appear](#panics-making-loader-not-appear)
27 | 18. [libhooker wants to install?](#libhooker-wants-to-install)
28 | 19. [Pressing "install" on each jb](#pressing-install-on-each-jb)
29 | 20. [--restorerootfs still keeps app icons??](#--restorerootfs-still-keeps-app-icons)
30 | 21. [Device boots out of DFU](#device-boots-out-of-dfu)
31 | 22. [How to fix RocketBootstrap](#how-to-fix-rocketbootstrap)
32 | 23. [SEP Panic: :skg /skgs](#sep-panic-skg-skgs)
33 | 24. [Cannot download apps from the App Store](#cannot-download-apps-from-the-app-store)
34 | 25. [Snowboard theming incorrectly](#snowboard-theming-incorrectly)
35 | 26. [End-of-central-directory signature not found](#end-of-central-directory-signature-not-found)
36 |
37 | ## GLIBC not found
38 |
39 | Add the universe repo by using the command below:
40 | - `sudo apt-add-repository universe && sudo apt update`
41 |
42 | Then, try again, and it should be fixed.
43 |
44 | ## \"Booted device\" but not booted
45 | This may happen when the downloading and patching process is interrupted. Please run `./palera1n.sh clean` (use with `sudo` if on Linux), then try again.
46 | If that doesn't fix it, it may be caused by an update from the Procursus repo. The quickest way to fix it is `./palera1n.sh --restorerootfs`. Alternatively, you can manually restore `/usr/libexec/dirs_cleaner` from the rootfs snapshot using the SSHRD script.
47 |
48 | ## NewTerm not launching
49 | Install NewTerm 2 from [https://apt.itsnebula.net/](https://apt.itsnebula.net/ "https://apt.itsnebula.net/") or get NewTerm3 beta.
50 |
51 | ## palera1n\/mineek repo not working
52 | [https://repo.palera.in/](https://repo.palera.in/ "https://repo.palera.in/") and [https://mineek.github.io/repo](https://mineek.github.io/repo "https://mineek.github.io/repo") are supposed to be used on rootless jailbreaks, not with any rootful jailbreaks with fakefs or tethered that have root access.
53 |
54 | ## Procursus \"killed 9\"
55 | Binaries will need to be resigned by the Procursus Team to fix Killed: 9. In the meantime, use the palera1n strap repo. you can install it from [nebula’s repo](https://apt.itsnebula.net).
56 |
57 | ## App crashes on open
58 | - `ldid -s /Applications/.app`
59 | - Don't include the <>
60 |
61 | ## \"Killed\" issue \(*not* \"Killed: 9\"\)
62 | You ran out of RAM on the Linux Live CD.
63 |
64 | Ways to fix the issue, ordered by which to try first:
65 | 1. Close some apps, like Discord
66 | 2. Attempt a shallow clone, `git clone --depth=1` in place of `git clone`
67 | 3. Clone palera1n onto persistent storage[note 1]
68 | 4. Install Linux onto your computer.
69 |
70 | Note 1: How to use persistent storage from Linux Live, with terminal
71 | 1. If you have already cloned palera1n, please delete it! Usually this can be done with `sudo rm -rf ~/palera1n` (assuming palera1n cloned into home directory)
72 | 2. You may want to install ntfs-3g first, on Ubuntu this can be done by running `sudo apt install ntfs-3g`
73 | 3. Run `sudo lsblk` to list your disks
74 | 4. Locate the persistent storage you want to use, for example a Windows C: drive would be of type "ntfs" and at least 10 GB in size, take a note of the device name, which starts with /dev
75 | 5. Mount disk onto `/mnt` *(example, please don’t paste as is)*: `sudo mount -t ntfs /dev/sda3 /mnt`
76 | 6. Change the working directory into `/mnt`: `cd /mnt`
77 | 7. Try to clone palera1n again
78 |
79 | Note 2: Most Linux Installers will set up swap areas automatically during the install if you use guided partitioning (if such option exists)
80 | In order to create a 2GB swap area as root:
81 | 1. Run `dd if=/dev/zero of=/swapfile bs=1M count=2048`
82 | 2. Run `chmod 600 /swapfile`
83 | 3. Format by running `mkswap /swapfile`
84 | 4. Open /etc/fstab in an editor like `nano`, then add a line that is `/swapfile none swap sw 0 0`
85 | 5. Run `swapon /swapfile`
86 |
87 | ## Error while loading shared libraries: libssl.so.1.1
88 | You can workaround this by installing OpenSSL 1.1 using the command(s) below (on systems with dpkg):
89 | - `curl -LO http://nz2.archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb`
90 | - `sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb`
91 |
92 | ## Please reinstall Sileo via SSH
93 | If you have AutoSign installed and you reinstall/update Sileo, you'll get the error message shown in the screenshot. Here's how to fix it.
94 |
95 | 1. Get access to a terminal by either using SSH or NewTerm
96 | 2. Run `sudo apt remove autosign`. Unless you changed it, the password is `alpine`
97 | 3. Once it's done, run `sudo apt reinstall org.coolstar.sileo`
98 | 4. Try running Sileo again. Feel free to upgrade it if that was what you were planning to do.
99 | 5. Install AutoSign again
100 |
101 | It should be fixed after these steps.
102 |
103 | Example image:
104 | 
105 |
106 |
107 | **Note**: Some tweaks (e.g. Watusi) are known to not work with this method.
108 |
109 | ## Loader app not appearing
110 | restorerootfs and rejailbreak with `--restorerootfs` at the end of your previous command. If neither of these help, make sure you're waiting enough time (15-30 seconds).
111 | On iPads, the loader may not show up. You can try to open it using [this shortcut](https://www.icloud.com/shortcuts/8cd5f489c8854ee0ab9ee38f2e62f87d). If other apps don’t appear along side the loader, try installing TrollHelper from [Havoc](https://havoc.app), and install TrollStore.
112 |
113 | ## Your local changes would be overwritten by checkout
114 | Run the following commands, and then try again:
115 | - `cd ramdisk`
116 | - `git stash`
117 | - `git stash drop`
118 | - `cd ..`
119 |
120 | ## Could not connect to lockdownd
121 | Try the following steps to fix the issue:
122 | - Unplug and replug your device
123 | - Run `idevicepair pair` (use `sudo` if on Linux)
124 | - Trust the computer on your device if needed
125 | - Run `idevicepair pair` again (use sudo if on Linux)
126 |
127 | Alternatively, you can manually [enter recovery mode](https://support.apple.com/en-us/HT201263 "enter recovery mode") before starting palera1n.
128 |
129 | ## Package is in a very bad inconsistent state
130 | You can fix this by running this command in a terminal:
131 | - `sudo dpkg -r --force-remove-reinstreq `
132 | - Don't include the <>
133 |
134 | ## Error installing bootstrap. Status: \-1
135 | You're not jailbroken. Sideloading the loader app on its own **will not work**.
136 |
137 | Please run the palera1n script on your computer to jailbreak your device.
138 |
139 | ## jbinit DIED!
140 | Your device may get stuck on a verbose boot screen, and if you look closely you'll see a "jbinit DIED!" error near the top.
141 |
142 | The simplest way to fix this is `rm -rf blobs` (use `sudo` if on Linux), then force reboot your device and try to jailbreak again.
143 |
144 | **For advanced users**:
145 | You can also try re-copying the `other/rootfs` files manually to the device using SSHRD.
146 |
147 | ## Daemons crashing on iOS 16.2+
148 | Substitute may cause daemons to crash on iOS 16.2 and above. It's recommended to downgrade to iOS 16.1.2 or below for now. Or you can try using ElleKit instead, but note that some tweaks don't yet work with it.
149 |
150 | ## Panics making loader not appear
151 | You may be encountering some issue related to panics and the loader “not appearing”, on A10+ make sure you have your passcode **disabled** before jailbreaking.
152 |
153 | ## libhooker wants to install?
154 | **Remove the Chimera and Odyssey repo immediately!**
155 |
156 | These repos are not meant to be used with palera1n and are able to break your jailbreak if you install anything from them.
157 |
158 | ## Pressing \"install\" on each jb
159 | **DO NOT DO THIS.** It resets your package lists and will likely break your jailbreak install eventually. Instead, press the gear icon, and then press Do All.
160 |
161 | ## --restorerootfs still keeps app icons??
162 | There's an issue with restoring rootfs where it doesn’t uicache. **There is no need to worry**; this happens on a couple of other jailbreaks and serves no harm to the user or device.
163 |
164 | Example image:
165 | 
166 |
167 | ## Device boots out of DFU
168 | Make sure to use a USB-A cable, and enter recovery mode first before entering DFU (you can use `./palera1n.sh dfuhelper` for this - use `sudo` if on Linux).
169 |
170 | ## How to fix RocketBootstrap
171 | 1. Uninstall any existing version of RocketBootstrap you have installed
172 | 2. Remove the Odyssey repo if you have it
173 | 3. Install RocketBootstrap from [this repo](https://rpetri.ch/repo).
174 | 4. Install RocketBootstrapFix from [this repo](https://repo.alexia.lol/).
175 |
176 | This is an updated fix that should work with more tweaks than the Odyssey version.
177 |
178 | ## SEP Panic: :skg /skgs
179 | This happens due to having a passcode set on A10-A11 devices when jailbreaking (or having previously set a passcode on iOS 16, even if it's currently turned off).
180 |
181 | If you are on A10, use https://github.com/guacaplushy/checkp4le.
182 |
183 | Why?
184 | checkp4le boots with checkra1n using a custom kernel patchfinder, which allows SEP to be re-enabled on A10
185 |
186 |
187 | If you are on A11
188 | - iOS 15
189 | - Turn off your passcode and try jailbreaking again.
190 | - iOS 16
191 | - Turn off your passcode, backup your device, erase from settings or restore from iTunes/Finder, and then restore the backup. Then try jailbreaking again.
192 |
193 | If you don't want to use checkp4le and just want to have a passcode, or if you're on A11, you can use FakePass from [this repo](https://repo.alexia.lol/) to have a passcode. However, this will only work in a jailbroken state (it can be bypassed by simply rebooting the device).
194 |
195 | ## Cannot download apps from the App Store
196 | Install Choicy from [this repo](https://opa334.github.io) and disable tweak injection into the App Store.
197 |
198 | ## Snowboard theming incorrectly
199 | You may be encountering an issue with Snowboard not theming correctly or not theming at all. To fix this, make sure you have Snowboard from [SparkDev's repo](https://sparkdev.me).
200 |
201 | Example image:
202 | 
203 |
204 | ## End-of-central-directory signature not found
205 | If the unzip error message it cannot find "`palera1n.zip(.ZIP, period.)`", you are running an outdated version of palera1n and need to update using `git pull`. If this doesn't work, reclone the palera1n repository by running `cd .. && sudo rm -rf palera1n && sudo git clone --recursive --depth=1 --shallow-submodules https://github.com/palera1n/palera1n && cd palera1n`.
206 |
207 | Otherwise, this error most likely indicates a problem with your internet connection, and you simply need to try running palera1n again.
208 |
209 |
210 |
211 | ### If none of these solve your issue, please join the [Discord server](https://dsc.gg/palera1n).
212 |
--------------------------------------------------------------------------------
/palera1n/README.md:
--------------------------------------------------------------------------------
1 |
2 |
3 |
palera1n
4 |
5 | An iOS 15.0-16.3 work-in-progress, (semi-)tethered checkm8 jailbreak.
6 |
7 | Change Log
8 | •
9 | Discord
10 | •
11 | Twitter
12 |
13 |
14 | # How does it work?
15 |
16 | It boots the device with multiple patches required. On first run, it'll boot a ramdisk which dumps your onboard blob, creates a fakefs (if using semi-tethered), installs the loader app, and patches your kernel.
17 |
18 | # Requirements
19 |
20 | - A checkm8 vulnerable iOS device on iOS 15 or 16 (A8-A11)
21 | - The device must be on iOS 15.0-16.3
22 | - **palera1n will never work with devices above the iPhone X/A11.** Please stop asking in the Discord, and remember: *this is mainly a developer jailbreak*
23 | - If you want the device to be semi-tethered, **you will need 5-10GB of space** for the fakefs. This means that 16GB devices cannot be semi-tethered
24 | - ### A10 and A11 devices
25 | - On A10 and A11, **you must disable your passcode while in the jailbroken state**.
26 | - On iOS 16 A10+, if you EVER enabled a passcode on 16, you have to reset through the settings app/restore with a computer
27 | - On A10, this can be fixed in the future by implementing blackbird.
28 | - On A11, we don't have a SEP exploit yet.
29 | - In the meantime, we recommend [FakePass](https://repo.alexia.lol/depictions/net.cadoth.fakepass) if you would like a passcode
30 |
31 | - A **USB-A to Lightning cable**
32 | - USB-C cables
33 | - 
34 |
35 | - A Linux or macOS computer
36 | - Python 3 must be installed.
37 | - This must be a **physical computer**. Virtual machines **do not work.**
38 | - AMD CPUs have an issue [with (likely) their USB controllers] that causes them to have a very low success rate with checkm8. It is unrecommended that you use them with palera1n.
39 | - If your device does not successfully jailbreak, try a computer with an Intel or other CPU
40 |
41 | # Warning
42 |
43 | - We are **NOT** responsible for any data loss, or the result of a device being bricked. The user of this program accepts responsibility should something happen to their device. While nothing should happen, jailbreaking has risks in itself.
44 |
45 | # How to use?
46 |
47 | A tutorial can be found [here](https://ios.cfw.guide/installing-palera1n).
48 |
49 | # Issues
50 |
51 | **Please first check the [common issues](https://github.com/palera1n/palera1n/blob/main/COMMONISSUES.md) document.**
52 |
53 | ## Still need help?
54 |
55 | If you still need help, **please** join our Discord. We disabled issues due to the flood of spam, and difficulty to respond in general. We are much more comfortable on Discord.
56 |
57 | Please, please, please, provide necessary info:
58 |
59 | - iOS version and device (eg. iPhone 6s 15.3.1, iPhone X 16.0)
60 | - Computer's OS and version (eg. Ubuntu 22.04, macOS 13.0)
61 | - The command you ran
62 |
63 | - **Full log from the logs folder**
64 |
65 | **DO NOT** harass tweak devs if tweaks don't work. Refer to [here](https://github.com/itsnebulalol/ios15-tweaks) for compatiblity.
66 |
67 | You may join [here](https://dsc.gg/palera1n).
68 |
69 | # Patreons
70 |
71 | Thank you so much to our Patrons that make the future development possible! You may sub [here](https://patreon.com/palera1n), if you'd like to.
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 | # Repos
85 |
86 | ### Tweaks mode
87 |
88 | All repos work when using tweaks mode because it uses normal Procursus and not rootless.
89 |
90 | ### Rootless
91 |
92 | Repos need to be updated for rootless, here are some that work currently:
93 |
94 | - [Mineek's repo](https://mineek.github.io/repo) contains rootless Procursus packages
95 | - The official [palera1n repo](https://repo.palera.in) contains miscellaneous packages
96 |
97 | If you want to make a rootless repo, use the official [palera1n repo](https://github.com/palera1n/repo) for reference. Every deb should use the `iphoneos-arm64` architecture, and *nothing* should be on the rootfs. Everything should be in /var/jb.
98 |
99 | # Credits
100 |
101 | - [Nathan](https://github.com/verygenericname)
102 | - The ramdisk that dumps blobs, copies files, and duplicates rootfs is a slimmed down version of [SSHRD_Script](https://github.com/verygenericname/SSHRD_Script)
103 | - For modified [restored_external](https://github.com/verygenericname/sshrd_SSHRD_Script)
104 | - Also helped Mineek getting the kernel up and running and with the patches
105 | - Helping with adding multiple device support
106 | - Fixing issues relating to camera.. etc by switching to fsboot
107 | - [iBoot64Patcher fork](https://github.com/verygenericname/iBoot64Patcher)
108 | - [Mineek](https://github.com/mineek)
109 | - For the patching and booting commands
110 | - Adding tweak support
111 | - For patchfinders for RELEASE kernels
112 | - [Kernel15Patcher](https://github.com/mineek/PongoOS/tree/iOS15/checkra1n/Kernel15Patcher)
113 | - [Kernel64Patcher](https://github.com/mineek/Kernel64Patcher)
114 | - Work on jbinit, together with [Nick Chan](https://github.com/asdfugil)
115 | - [Amy](https://github.com/elihwyma) for the [Pogo](https://github.com/elihwyma/Pogo) app
116 | - [checkra1n](https://github.com/checkra1n) for the base of the kpf
117 | - [nyuszika7h](https://github.com/nyuszika7h) for the script to help get into DFU
118 | - [the Procursus Team](https://github.com/ProcursusTeam) for the amazing [bootstrap](https://github.com/ProcursusTeam/Procursus)
119 | - [F121](https://github.com/F121Live) for helping test
120 | - [m1sta](https://github.com/m1stadev) for [pyimg4](https://github.com/m1stadev/PyIMG4)
121 | - [tihmstar](https://github.com/tihmstar) for [pzb](https://github.com/tihmstar/partialZipBrowser)/original [iBoot64Patcher](https://github.com/tihmstar/iBoot64Patcher)/original [liboffsetfinder64](https://github.com/tihmstar/liboffsetfinder64)/[img4tool](https://github.com/tihmstar/img4tool)
122 | - [Tom](https://github.com/guacaplushy) for a couple patches and bugfixes
123 | - For maintaining [Kernel64Patcher](https://github.com/palera1n/Kernel64Patcher)
124 | - [xerub](https://github.com/xerub) for [img4lib](https://github.com/xerub/img4lib) and [restored_external](https://github.com/xerub/sshrd) in the ramdisk
125 | - [Cryptic](https://github.com/Cryptiiiic) for [iBoot64Patcher](https://github.com/Cryptiiiic/iBoot64Patcher) fork, and [liboffsetfinder64](https://github.com/Cryptiiiic/liboffsetfinder64) fork
126 | - [libimobiledevice](https://github.com/libimobiledevice) for several tools used in this project (irecovery, ideviceenterrecovery etc), and [nikias](https://github.com/nikias) for keeping it up to date
127 | - [Nick Chan](https://github.com/asdfugil) general help with patches and iBoot payload stuff
128 | - [Dora](https://github.com/dora2-iOS) for iBoot payload and iBootpatcher2
129 | - [Sam Bingner](https://github.com/sbingner) for [Substitute](https://github.com/sbingner/substitute)
130 | - [Serena](https://github.com/SerenaKit) for helping with boot ramdisk.
131 |
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/Kernel64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/Kernel64Patcher
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/iBoot64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/iBoot64Patcher
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/iBootpatch2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/iBootpatch2
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/ideviceenterrecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/ideviceenterrecovery
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/ideviceinfo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/ideviceinfo
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/img4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/img4
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/iproxy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/iproxy
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/irecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/irecovery
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/jq:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/jq
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/pzb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/pzb
--------------------------------------------------------------------------------
/palera1n/binaries/Darwin/sshpass:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Darwin/sshpass
--------------------------------------------------------------------------------
/palera1n/binaries/Kernel15Patcher.ios:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Kernel15Patcher.ios
--------------------------------------------------------------------------------
/palera1n/binaries/Kernel16Patcher.ios:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Kernel16Patcher.ios
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/Kernel64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/Kernel64Patcher
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/iBoot64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/iBoot64Patcher
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/iBootpatch2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/iBootpatch2
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/ideviceenterrecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/ideviceenterrecovery
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/ideviceinfo:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/ideviceinfo
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/img4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/img4
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/iproxy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/iproxy
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/irecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/irecovery
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/jq:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/jq
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/pzb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/pzb
--------------------------------------------------------------------------------
/palera1n/binaries/Linux/sshpass:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/binaries/Linux/sshpass
--------------------------------------------------------------------------------
/palera1n/other/bootlogo.im4p:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/other/bootlogo.im4p
--------------------------------------------------------------------------------
/palera1n/other/payload/payload_t8010.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/other/payload/payload_t8010.bin
--------------------------------------------------------------------------------
/palera1n/other/payload/payload_t8015.bin:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/other/payload/payload_t8015.bin
--------------------------------------------------------------------------------
/palera1n/other/rootfs/jbin/post.sh:
--------------------------------------------------------------------------------
1 | binpack=/jbin/binpack
2 |
3 | # uicache loader app
4 | $binpack/bin/rm -rf /var/.palera1n/loader.app
5 | $binpack/usr/bin/uicache -p /jbin/loader.app
6 |
7 | # respring
8 | $binpack/usr/bin/killall -9 SpringBoard
9 |
10 | echo "[post.sh] done"
11 | exit
12 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/Kernel64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/Kernel64Patcher
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/gtar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/gtar
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/iBoot64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/iBoot64Patcher
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/img4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/img4
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/img4tool:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/img4tool
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/iproxy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/iproxy
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/irecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/irecovery
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/jq:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/jq
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/kerneldiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/kerneldiff
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/pzb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/pzb
--------------------------------------------------------------------------------
/palera1n/ramdisk/Darwin/sshpass:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Darwin/sshpass
--------------------------------------------------------------------------------
/palera1n/ramdisk/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 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/Kernel64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/Kernel64Patcher
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/PlistBuddy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/PlistBuddy
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/hfsplus:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/hfsplus
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/iBoot64Patcher:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/iBoot64Patcher
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/img4:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/img4
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/img4tool:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/img4tool
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/iproxy:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/iproxy
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/irecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/irecovery
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/jq:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/jq
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/kerneldiff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/kerneldiff
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/pzb:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/pzb
--------------------------------------------------------------------------------
/palera1n/ramdisk/Linux/sshpass:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/Linux/sshpass
--------------------------------------------------------------------------------
/palera1n/ramdisk/README.md:
--------------------------------------------------------------------------------
1 | SSH Ramdisk Script
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 | Create and boot a SSH ramdisk on checkm8 devices
14 |
15 |
16 | ---
17 |
18 | # Prerequsites
19 |
20 | 1. A computer running macOS/linux
21 | 2. A checkm8 device (A7-A11)
22 |
23 | # Usage
24 |
25 | 1. Clone and cd into this repository: `git clone https://github.com/verygenericname/SSHRD_Script --recursive && cd SSHRD_Script`
26 | - If you have cloned this before, run `cd SSHRD_Script && git pull` to pull new changes
27 | 2. Run `./sshrd.sh `, **without** the `<>`.
28 | 3. Place your device into DFU mode
29 | - A11 users, go to recovery first, then DFU.
30 | 4. Run `./sshrd.sh boot` to boot the ramdisk
31 | 5. Run `./sshrd.sh ssh` to connect to SSH on your device
32 | 6. Finally, to mount the filesystems, run `mount_filesystems`
33 | - /var is mounted to /mnt2 in the ssh session.
34 | - /private/preboot is mounted to /mnt6.
35 | 7. Have fun!
36 |
37 | # Other commands
38 |
39 | - Reset your device: `./sshrd.sh reset`
40 | - Dump onboard blobs: `./sshrd.sh dump-blobs`
41 | - Delete old SSH ramdisk: `./sshrd.sh clean`
42 |
43 | # Other Stuff
44 |
45 | - [Reddit Post](https://www.reddit.com/r/jailbreak/comments/wgiye1/free_release_ssh_ramdisk_creator_for_iphones_ipad/)
46 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/other/bootlogo.im4p:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/other/bootlogo.im4p
--------------------------------------------------------------------------------
/palera1n/ramdisk/other/ramdisk.tar.gz:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/palera1n/ramdisk/other/ramdisk.tar.gz
--------------------------------------------------------------------------------
/palera1n/ramdisk/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 | 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
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 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/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 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/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 | MIIZmRYESU00TQIBADGCENb/hOqFnEKCEM0wghDJFgRNQU5CMYIQv/+E6oWc
304 | UIHtMIHqFgRNQU5QMYHh/4SSuYZICjAIFgRCTkNIBAD/hJK9pEQLMAkWBEJP
305 | UkQCARj/hJqVoE8LMAkWBENFUE8CAQH/hJqhklANMAsWBENISVACAwCAEP+E
306 | msGkTwswCRYEQ1BSTwEB//+Ems2KQwswCRYEQ1NFQwEB//+Eqo2SRBEwDxYE
307 | RUNJRAIHCFiIKApALv+FmpGeTQswCRYEU0RPTQIBAf+Hm7nebh4wHBYEc25v
308 | bgQUqhKQoYQYIc1kHAWpbw690LYpejX/h5vJ7G4eMBwWBHNydm4EFCqtBBsk
309 | 1lXVRzDnyIp5k4J4fyQk/4aLveBmgYEwfxYEYW9wZjF3/4SinaZUOjA4FgRE
310 | R1NUBDCxqsrre83e2g/OmBk/4TAUM7uSLpxCjcRLP96UJa3IofcdnnNjDgFW
311 | gtb1Jim4f3H/hKqtilkLMAkWBEVLRVkBAQD/hKrBpE8LMAkWBEVQUk8BAf//
312 | hKrNikMLMAkWBEVTRUMBAf//hpOF6DCBgTB/FgRiYXQwMXf/hKKdplQ6MDgW
313 | BERHU1QEMPvOwVSLZcVxkeGzhuiDNKTX48/SqYnZ2Ynyez3KEtqFwrfyK4VV
314 | qEx74uv0aPobTP+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB
315 | //+Eqs2KQwswCRYERVNFQwEB//+Gk4XoMYGBMH8WBGJhdDExd/+Eop2mVDow
316 | OBYEREdTVAQwG3bv6F3lhp6xh0cwxTzDLouIcn33w5rqeuwyVnBgJWhPu/Sb
317 | Xxo02MKz2gZ2LFM3/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJP
318 | AQH//4SqzYpDCzAJFgRFU0VDAQH//4aThehGgYEwfxYEYmF0RjF3/4SinaZU
319 | OjA4FgRER1NUBDCiGXyk91cqyf8dCPjzZrSTsaMJKWazOIrt9pAXL/f0OfR0
320 | AZEVweFVXv5vJqLKxUj/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQ
321 | Uk8BAf//hKrNikMLMAkWBEVTRUMBAf//hpuhzjCBgTB/FgRjaGcwMXf/hKKd
322 | plQ6MDgWBERHU1QEMEKY+T10G/IHn+w2Dakg5ODwmdEcT191ykHrO7WWt9iR
323 | rUCd9pQhOLAAEEgXhAN/I/+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYE
324 | RVBSTwEB//+Eqs2KQwswCRYERVNFQwEB//+Gm6HOMYGBMH8WBGNoZzExd/+E
325 | op2mVDowOBYEREdTVAQw/q2v8gFHWs7rJcwGWU9rHCR6DltOw4TdsfnIMoOw
326 | DpRQC3ijX1Wn4miHmUrIoLqt/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJ
327 | FgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4aj0eRlgYEwfxYEZHRyZTF3
328 | /4SinaZUOjA4FgRER1NUBDCzxSf70V8gAqy+gcIW8zg1EbkV/KDkt7ENUCFA
329 | AMvrSK03c37D+lpbO4jpzFqOGxX/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8L
330 | MAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//hrPRwnBxMG8WBGZ0YXAx
331 | Z/+Eop2mVCowKBYEREdTVAQgU0C2oFm9tzLnFee7Gyku3NRcKo0dB+YDnT8z
332 | jXxEKKv/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrN
333 | ikMLMAkWBEVTRUMBAf//hrPR5nBxMG8WBGZ0c3AxZ/+Eop2mVCowKBYEREdT
334 | VAQgU0C2oFm9tzLnFee7Gyku3NRcKo0dB+YDnT8zjXxEKKv/hKqtilkLMAkW
335 | BEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//
336 | hrux8lCBgTB/FgRnbHlQMXf/hKKdplQ6MDgWBERHU1QEMGmWN7Ox1Bj+3JcP
337 | 1Y589XrweinZ64YTvRaX2QGsXWV9QDVJ35j6x1O/ScO/hdZqkP+Eqq2KWQsw
338 | CRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYERVNFQwEB
339 | //+Gy4nKY4GBMH8WBGliZWMxd/+Eop2mVDowOBYEREdTVAQwbBWM8p+aDbQo
340 | +0fjSs6QqN7T72kjqR/O4/BW9kST4FUNGcPHWQ3Xz9f3KKcsWWal/4SqrYpZ
341 | CzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VD
342 | AQH//4bLid50gYEwfxYEaWJvdDF3/4SinaZUOjA4FgRER1NUBDCMPlj32h90
343 | 91sHH5LrWm94ZW4dkZxVYdJkiWwAuzYVm0nBhYufUF2bYUgjQfQSD4//hKqt
344 | ilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVT
345 | RUMBAf//hsuJ5nOBgTB/FgRpYnNzMXf/hKKdplQ6MDgWBERHU1QEMMHN5+tD
346 | +Qygn6UVuRvLvyc04AeXMayPz9VpXgAOP3lKwAbGlgoz4LIu3UYwTkQaZ/+E
347 | qq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYE
348 | RVNFQwEB//+Gy7HYYoGBMH8WBGlsbGIxd/+Eop2mVDowOBYEREdTVAQwDyuK
349 | Cj7JxM/6GPha4T8APUGoR1KD14JQKKDeiURqcjC2RtNb0Az1VZp1wVg8vAsu
350 | /4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJ
351 | FgRFU0VDAQH//4bLzfJzgYEwfxYEaXN5czF3/4SinaZUOjA4FgRER1NUBDDG
352 | wk/XYr2/PMfuew6vkdhkrtjVkTP4sYOj/daOklfBd84GzJ9UzBZlxtkQbl6L
353 | 1lP/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikML
354 | MAkWBEVTRUMBAf//htvJ3GyBgTB/FgRrcm5sMXf/hKKdplQ6MDgWBERHU1QE
355 | MAy01T2E8SC+GP2IjqNa6LSl9LKoF6JrlGN3cSgXTzVO2RvhT3DSR770pLuq
356 | Igd1XP+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2K
357 | QwswCRYERVNFQwEB//+G473Ob4GBMH8WBGxvZ28xd/+Eop2mVDowOBYEREdT
358 | VAQwCpqIhfm9LjfDaM14//2PpehYXzGICeFbI/8jXbMNVw1L9ZojkbKCCvee
359 | Z+TvtaT8/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4Sq
360 | zYpDCzAJFgRFU0VDAQH//4brzfJzgYEwfxYEbXN5czF3/4SinaZUOjA4FgRE
361 | R1NUBDABMrfX4fEdlWlFrXMmUmis2NKy6KlrEXRJfbbpN4AIOTM3mkXW7Fvh
362 | loFnAggWBC3/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//
363 | hKrNikMLMAkWBEVTRUMBAf//h5OR5muBgTB/FgRyZHNrMXf/hKKdplQ6MDgW
364 | BERHU1QEMNSTD2VTLvkSUkUpJAw4sjrPf17aRHHMXpzqQlPpC7bZvLhT8tyZ
365 | JeurkXNypvgHgf+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB
366 | //+Eqs2KQwswCRYERVNFQwEB//+Hk5HocoGBMH8WBHJkdHIxd/+Eop2mVDow
367 | OBYEREdTVAQw/Lnenv45BePGrTbrIboNngEl8Mhekq5OcSfDKthlBP5J8461
368 | F6pjOCAkmLSx6PYk/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJP
369 | AQH//4SqzYpDCzAJFgRFU0VDAQH//4eTlcZtgYEwfxYEcmVjbTF3/4SinaZU
370 | OjA4FgRER1NUBDDY8jaorN0kwwSFJBmXEn4Lw+RRpG+OUVoVSzGNHn/Siq0I
371 | 13Rf6WNGq6PrFLoiI6H/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQ
372 | Uk8BAf//hKrNikMLMAkWBEVTRUMBAf//h5OZ6GFxMG8WBHJmdGExZ/+Eop2m
373 | VCowKBYEREdTVAQgU0C2oFm9tzLnFee7Gyku3NRcKo0dB+YDnT8zjXxEKKv/
374 | hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkW
375 | BEVTRUMBAf//h5OZ6HNxMG8WBHJmdHMxZ/+Eop2mVCowKBYEREdTVAQgU0C2
376 | oFm9tzLnFee7Gyku3NRcKo0dB+YDnT8zjXxEKKv/hKqtilkLMAkWBEVLRVkB
377 | Af//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//h5Ot5G6B
378 | gTB/FgRya3JuMXf/hKKdplQ6MDgWBERHU1QEMNO6He7lELfUK7YDkY6PX6Ls
379 | CSSYc15hV5gE+6bnaljLpjwI/8FmfiOi345UEsCvhP+Eqq2KWQswCRYERUtF
380 | WQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYERVNFQwEB//+Hk7HO
381 | b4GBMH8WBHJsZ28xd/+Eop2mVDowOBYEREdTVAQwIoiqIz9YVtFzuRBbfVMd
382 | wocITNOF22u+h/xR0T4lzn0CdQjRt8/i3RoT9OqwHCcd/4SqrYpZCzAJFgRF
383 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eT
384 | veZpgYEwfxYEcm9zaTF3/4SinaZUOjA4FgRER1NUBDAaFQtbKRzdJctzV+j9
385 | zOyS1sDK/YMdxx4kEkc70tVjEWBLyQ+iUW1eMFlf4sKR42j/hKqtilkLMAkW
386 | BEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//
387 | h5PNynCBgTB/FgRyc2VwMXf/hKKdplQ6MDgWBERHU1QEME/9Ypd9ev0Lzvl+
388 | Xuky7kz9tHYYNfsXZi/JHjU3YkvXFAZmjEqVPReC9ndChvJsdf+Eqq2KWQsw
389 | CRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYERVNFQwEB
390 | //+Hk9HmY4GBMH8WBHJ0c2Mxd/+Eop2mVDowOBYEREdTVAQwWFHj+jtBihFO
391 | FVgEA2F0mnRPPVIhXumeLAdncz3rgWL5nhcLXgxvoMU73IevkfJK/4SqrYpZ
392 | CzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VD
393 | AQH//4ebleBpgYEwfxYEc2VwaTF3/4SinaZUOjA4FgRER1NUBDBJHUgXvEPY
394 | LLdw4tblDXnFzVsnXF0EIgr2CtQ477PxxO5vwJjL1a5+U0Wbf8vfDTz/hKqt
395 | ilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVT
396 | RUMBAf//h6PJ5nSBgTB/FgR0cnN0MXf/hKKdplQ6MDgWBERHU1QEMLuIHhX9
397 | U8v96HUKeE711083NxjHrc2+MkSQwQbkiBSX4ARVt5PxIujtXk+pPq6jM/+E
398 | qq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYE
399 | RVNFQwEB/wSCAgAEG8um/z8UNzF39jUjs+S5tLoXLqrWQ6DaRTAlL+EBxguw
400 | VnVnqp1hcrVpM6XGAx38b6XarYp4bPzbxYMeMH8dcaqZyLOGyrf2p6rEgFM0
401 | UDuTqRLm3swv1gEq/mdK90f6YhLl7aUwXtZeW6fOwuooN6viQ9uiY7X1yiGQ
402 | h7ElPpRZHIQ0HtN66ona2wQwXbshI8nLn0iM64kyQKQVHRyJQp841CapwSp2
403 | ZCirXwQcRPOzozW7tzMp5sOwPG3jfR8r1MVxnq1zFIjnTy3Lnjom+DBYqelE
404 | KQMcWIIby5vQg/ZPLPkm8U/VyteX9VA2/+IAa8x/66XSW6JNQy2wlVOfKRsP
405 | F1RLrccAzrg3hXLKhi9GfQ7XBCs1WBoKb8cbMAXXMDXnKlfYnVomK8qj3RnY
406 | 8Kjglq+1hAv8MPKzeeT1+paLVINZcFRY5FuLtMubfpGsC606l8mIsrH3RWkq
407 | +0aai7etn+awOIF7LHdq6Hv1kjRzRIZnxUtFiEcMzl/5lArYsiSyuGlb+LVM
408 | PRKfWA78dvuVUfAH1YQXdPJYJBdZo0/gx8hZYQJj5CsaKxpWdr8CLQI7DMyj
409 | Oxz8W4aMfQd1PHTXBR1Jeoiyo0JWkrHigpmXDmROC7P8+G72FYhQ1o43e4LH
410 | H/vSEuGHas3Ni5pL0DabV4KKn+YZjkrOZb6jzTCCBq4wggaqMIIEkqADAgEC
411 | Agg9e+kqzb8YcDANBgkqhkiG9w0BAQwFADBLMScwJQYDVQQDDB5BcHBsZSBT
412 | ZWN1cmUgQm9vdCBSb290IENBIC0gRzIxEzARBgNVBAoMCkFwcGxlIEluYy4x
413 | CzAJBgNVBAYTAlVTMB4XDTE0MTIxOTIwMjMyMFoXDTM0MTIxNDIwMTMxMFow
414 | VjEyMDAGA1UEAwwpVDgwMTAtVHNzTGl2ZS1NYW5pZmVzdEtleS1SZXZCLURh
415 | dGFDZW50ZXIxEzARBgNVBAoMCkFwcGxlIEluYy4xCzAJBgNVBAYTAlVTMIIC
416 | IjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA3g7EJfnExCr6muqj2Umv
417 | S81BScrv24ytqihdcEfSkQuGKbSlK7PLWPrVNM1xpl5ikzvaAnsyqFD0b4bk
418 | ccFMQXHsjGRmvh60gYdKwFZiYWs04SN48Tx6MZwnYkZ4kAOJO6ZQB+/HCxGh
419 | bZ2rRmGQk7Dd4/rDQXWUNNcyA8FDBWbcyiMxzE6sjZgrkZRrhEiWrGa0cZNu
420 | WMIDn9KtCQEr2ovudbzGhPehkIjIUpPaji7DMKp8SHLM3NuodJYtPrROlRCC
421 | wCUERcHB2LMMOCwwJ1gEJTiHJTR5DH/Qp+Qp+NrqOUyJpsZYr1GcrpsiEzcH
422 | mkpD2iRGUMvbLwiiQBwZ0kJ9dJcJjyKqMcJ/tNa8APMm3W+coHm2PltSvf76
423 | KjVTpCU7Z0wabEHeYTXdYyHlZI81nQVw7kXz0jDrgbvz/zR7ZtJCLQ+4qaaG
424 | gWFPtbCoQRKDHZlZfMdEQ5c3j/C6XnN8oEIWrcFojxCseVxTMVU2ryJ7VO0v
425 | w5KFwAh0HJ8NnCwqv0AmuWMeRj7JAlx3cc8ntow0iJdoXxb7YPEBqbezml7/
426 | n08vU8pcBwTfGhQxzA3w3vypJdmCHOJ8eOXejHJV571o637JDpHMkvsC/UnM
427 | ryZ9CLtTOKs9Nl+EDboQN4dgzTmvQCXyCM1/Qcu+OUkH4vsOQRXMPZb/bCDH
428 | Q7kCAwEAAaOCAYUwggGBMB0GA1UdDgQWBBSmdyKoMvYiqLkGLu+F/DLFinyR
429 | gTAMBgNVHRMBAf8EAjAAMB8GA1UdIwQYMBaAFGjpWVBF8V0H+T/EJvwcJ2J9
430 | nhOUMA4GA1UdDwEB/wQEAwIHgDCCAR8GCiqGSIb3Y2QGAQ8BAf8EggEMMYIB
431 | CP+E6oWcUIG2MIGzFgRNQU5QMYGq/4SSuYZIDDAKFgRCTkNIoAIFAP+Ekr2k
432 | RAwwChYEQk9SRKACBQD/hJqVoE8LMAkWBENFUE8CAQH/hJqhklANMAsWBENI
433 | SVACAwCAEP+EmsGkTwwwChYEQ1BST6ACBQD/hJrNikMMMAoWBENTRUOgAgUA
434 | /4SqjZJEDDAKFgRFQ0lEoAIFAP+FmpGeTQswCRYEU0RPTQIBAf+Hm7nebgww
435 | ChYEc25vbqACBQD/hPqJlFBDMEEWBE9CSlAxOf+Eop2mVAwwChYEREdTVKAC
436 | BQD/hKrBpE8MMAoWBEVQUk+gAgUA/4SqzYpDDDAKFgRFU0VDoAIFADANBgkq
437 | hkiG9w0BAQwFAAOCAgEAOYii+PbyU/5BrvRs24VboZy29Ef7SThb/Ar3/oOv
438 | 671EnBIvMJ0Q6qDSRjHP5pZfkUkLJrvAEQiETdCHPlzf7iSQvAnGKDWiXCj9
439 | 7Qa3bQ1bJzpvBM+pH3FEt9vjLjWB5Vor9MShGkSxtcVmzeFJNf0exozRnYyx
440 | GUBaYTbCtMKkv/9IGEjG8rLXlEAImTNMYq5Y+mkLGQFkJkazPBJIKhE8wMNL
441 | j/YnYqv7Oc2bL4IbJqa732Hjn6GBswPb+I9ZbFMEu2DeEwIkctq+BrbrunJP
442 | HBwOeQKiG+1zHcwJJAfGLStHFkV8gEW+ujxBjKgvGKz9RGXrQJg9XIEX+IKx
443 | qojcwvRNwF3BIp9MxN+gjRCvojrHGQt/kOH/AwpNlgZXx7uraeKHGdXEWyCE
444 | hjLVGQcmxnbWJ2yzTmQp6Qd4mEj8i9oly/mlI0HCT9kxz2ykH9vtr1ZDRyoj
445 | VU02Hoymu/vAdWZXyS6XW507R49afqhJMhc6AsAWEVIB5JMeuj6Kj+zbz20C
446 | +wa7pvJmGmcpBxU2WtjuxWTGLz92dSSXL5ANA9u3fa2Bfjrjru4JOStY4fCc
447 | DjyZypaTbfCw4VE7F2KOeotVcmBCp5LEELuogL2teioPK6MjwRkJcAouKjU1
448 | 6EM0j/Nwm9QjEr5Suh42d3YuStNKVb9cqcKOMrvnWqI=
449 |
450 |
451 |
452 |
453 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/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 | MIIVdBYESU00TQIBADGCDLH/hOqFnEKCDKgwggykFgRNQU5CMYIMmv+E6oWc
127 | UIIBDzCCAQsWBE1BTlAxggEB/4SSuYZIKjAoFgRCTkNIBCCNgvAa1H9307TL
128 | F+WWaOAiN1pRlVcTSYzfCuTb+rGndP+Ekr2kRAswCRYEQk9SRAIBCv+EmpWg
129 | TwswCRYEQ0VQTwIBAf+EmqGSUA0wCxYEQ0hJUAIDAIAS/4SawaRPCzAJFgRD
130 | UFJPAQH//4SazYpDCzAJFgRDU0VDAQH//4SqjZJEETAPFgRFQ0lEAgcCGQge
131 | wgAm/4WakZ5NCzAJFgRTRE9NAgEB/4ebud5uHjAcFgRzbm9uBBRWbuHJtFDZ
132 | dMtzQkzu5XMcBjhuTv+Hm8nsbh4wHBYEc3J2bgQUyBX5xUMlK3FCZURoGnB/
133 | xJAjW77/hou94GaBgTB/FgRhb3BmMXf/hKKdplQ6MDgWBERHU1QEML+FxZ+i
134 | /vabk1Xm1FTlnkQWORTtRJkYXMU5jYmi6WSfT9WmaJ4laXzrZQkwiTH8lf+E
135 | qq2KWQswCRYERUtFWQEBAP+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYE
136 | RVNFQwEB//+Go9HkZYGBMH8WBGR0cmUxd/+Eop2mVDowOBYEREdTVAQw8CmC
137 | F/c6glUQtCnL2OLmtQgdhyP17OLnVhhnHBpfIzSZMaeVtqTjCHWNUkgk+hnJ
138 | /4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJ
139 | FgRFU0VDAQH//4az0cJwcTBvFgRmdGFwMWf/hKKdplQqMCgWBERHU1QEIFNA
140 | tqBZvbcy5xXnuxspLtzUXCqNHQfmA50/M418RCir/4SqrYpZCzAJFgRFS0VZ
141 | AQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4az0eZw
142 | cTBvFgRmdHNwMWf/hKKdplQqMCgWBERHU1QEIFNAtqBZvbcy5xXnuxspLtzU
143 | XCqNHQfmA50/M418RCir/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRF
144 | UFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4bLicpjgYEwfxYEaWJlYzF3/4Si
145 | naZUOjA4FgRER1NUBDAq6uPVgkgOu+j1CAoIOT/DPVIErxy/aJf3BeFnPwQv
146 | P6Ra5M6cBw9rgq0Uya1/Q3j/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkW
147 | BEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//hsuJ3nSBgTB/FgRpYm90MXf/
148 | hKKdplQ6MDgWBERHU1QEMPmCnlskcVuNsCp+0YAr8tcwPN2e0RzFZgyBCIbc
149 | sH8kz7TV5NCwJmrXVGITxebK5/+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwsw
150 | CRYERVBSTwEB//+Eqs2KQwswCRYERVNFQwEB//+Gy4nmc4GBMH8WBGlic3Mx
151 | d/+Eop2mVDowOBYEREdTVAQwRU/1wwLg45pnl4KY9r1HYtZjlS+o01QGJ4hE
152 | ImmVkG45xHrk5NeL0mrfUO/5EN1r/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRP
153 | CzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4bLsdhigYEwfxYEaWxs
154 | YjF3/4SinaZUOjA4FgRER1NUBDDKI8HfiSkjMD3RLFs3CW6rc0bMhNmSSm0b
155 | DeYMMYnCE5EFT2pdaARcgexp6IbiiKL/hKqtilkLMAkWBEVLRVkBAf//hKrB
156 | pE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//hsvN8nOBgTB/FgRp
157 | c3lzMXf/hKKdplQ6MDgWBERHU1QEMN1BtK+AdaNaXIwMaP49cNk25/ETiHJD
158 | gX+x86tecUUs96VqKqpnM36Uxzo1XdWy/P+Eqq2KWQswCRYERUtFWQEB//+E
159 | qsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYERVNFQwEB//+G28ncbIGBMH8W
160 | BGtybmwxd/+Eop2mVDowOBYEREdTVAQwnD5LWNHUsZw8sHdpbfe9XvQHSLAe
161 | k65s+ayGAcjhg3IouMgdPtFWWo7knoE8Dh/W/4SqrYpZCzAJFgRFS0VZAQH/
162 | /4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4brlcxpgYEw
163 | fxYEbWVmaTF3/4SinaZUOjA4FgRER1NUBDBVgaNQMrsKK4u7TJMorT2gN2Ge
164 | CRXptIXERZqW+/m60R9tSDaQAP8G63ON1bbAiRP/hKqtilkLMAkWBEVLRVkB
165 | AQD/hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//huvN8nOB
166 | gTB/FgRtc3lzMXf/hKKdplQ6MDgWBERHU1QEMOutqX2Nha8EI+/LriiasfKk
167 | UVmGXJjx+Oh1W+nXcPeOy5R2/df/EzQOj6K5+lfVkf+Eqq2KWQswCRYERUtF
168 | WQEB//+EqsGkTwswCRYERVBSTwEB//+Eqs2KQwswCRYERVNFQwEB//+Hk5Hm
169 | a4GBMH8WBHJkc2sxd/+Eop2mVDowOBYEREdTVAQwmoSX/kQ89GFnLlTNv9z7
170 | 6rTQj5ds9xr0J0iZBZCTxT9qykjtC5bxYHCXizC5RqVq/4SqrYpZCzAJFgRF
171 | S0VZAQH//4SqwaRPCzAJFgRFUFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4eT
172 | kehygYEwfxYEcmR0cjF3/4SinaZUOjA4FgRER1NUBDB5wKy3NK8wT9bFzjeB
173 | g/7+VErJU2FqfJzHZeraGwPup0P5C8CGYiDR2lxPVa6S3nD/hKqtilkLMAkW
174 | BEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//
175 | h5OZ6GFxMG8WBHJmdGExZ/+Eop2mVCowKBYEREdTVAQgU0C2oFm9tzLnFee7
176 | Gyku3NRcKo0dB+YDnT8zjXxEKKv/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8L
177 | MAkWBEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf//h5OZ6HNxMG8WBHJmdHMx
178 | Z/+Eop2mVCowKBYEREdTVAQgU0C2oFm9tzLnFee7Gyku3NRcKo0dB+YDnT8z
179 | jXxEKKv/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8BAf//hKrN
180 | ikMLMAkWBEVTRUMBAf//h5Ot5G6BgTB/FgRya3JuMXf/hKKdplQ6MDgWBERH
181 | U1QEMBphhad5+0Zfvc7tVMYacjDiBhFBxGRuiUOU41aikKAr0l+Ick7zppFJ
182 | lTh39OiPR/+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBSTwEB//+E
183 | qs2KQwswCRYERVNFQwEB//+Hk73maYGBMH8WBHJvc2kxd/+Eop2mVDowOBYE
184 | REdTVAQwe6FbLsaIJjDvJSysLBFoHtrO8qXj6hI/em7SPZMoYlEEoiTiaXdg
185 | rjOi2Q935t8d/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRFUFJPAQH/
186 | /4SqzYpDCzAJFgRFU0VDAQH//4eTzcpwgYEwfxYEcnNlcDF3/4SinaZUOjA4
187 | FgRER1NUBDA83qlFN6seCbULWTcxJ7zCI5+2TFPJxzPM/aeu7BKHC3hFJyt8
188 | eCCPlpsXNEFErAz/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkWBEVQUk8B
189 | Af//hKrNikMLMAkWBEVTRUMBAf//h5PR5mOBgTB/FgRydHNjMXf/hKKdplQ6
190 | MDgWBERHU1QEMHwu518tvEhplXy9dO13+Jf8m3D5jblgSRnV+VkcLKpnK1mY
191 | HU+Wii7Jt9E0Kg3R/P+Eqq2KWQswCRYERUtFWQEB//+EqsGkTwswCRYERVBS
192 | TwEB//+Eqs2KQwswCRYERVNFQwEB//+Hm5XgaYGBMH8WBHNlcGkxd/+Eop2m
193 | VDowOBYEREdTVAQwbWr8wsfs56MzzNrsu/oaxv6RA3UhYtt98pfiD+MY5VSQ
194 | GKBjX5q0nFuChKoEyFvr/4SqrYpZCzAJFgRFS0VZAQH//4SqwaRPCzAJFgRF
195 | UFJPAQH//4SqzYpDCzAJFgRFU0VDAQH//4ejyeZ0gYEwfxYEdHJzdDF3/4Si
196 | naZUOjA4FgRER1NUBDBbiWjKsZ+NpI7cpFqdietLg0OuWEK6Wlo/VqLOBrqi
197 | r4heZ/NEhkStF8Bu/XoMADz/hKqtilkLMAkWBEVLRVkBAf//hKrBpE8LMAkW
198 | BEVQUk8BAf//hKrNikMLMAkWBEVTRUMBAf8EggIAEJToQm8IXmdvLWjFSzPe
199 | mFZcFWffbo5//Z70zXLLc+3nteEyjlAmzTeUJSpj9izjr6ghG2P3m92mxKAt
200 | yitym8g0aUpG1FNRSyRbH2ZuM9erbdzmMEiRlDfRMLpYWDjsAYXT8s4N/7BH
201 | fZ7Nm4ObeI/EFA436gHfz5zkH1pKNcqUTesBUVHBI91d7j9M2PskL6AYbX75
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 |
--------------------------------------------------------------------------------
/palera1n/ramdisk/sshrd.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | set -e
4 |
5 | oscheck=$(uname)
6 |
7 | ERR_HANDLER () {
8 | [ $? -eq 0 ] && exit
9 | echo "[-] An error occurred"
10 | rm -rf work
11 | }
12 |
13 | trap ERR_HANDLER EXIT
14 |
15 | # Check for pyimg4
16 | if ! python3 -c 'import pkgutil; exit(not pkgutil.find_loader("pyimg4"))'; then
17 | echo '[-] pyimg4 not installed. Press any key to install it, or press ctrl + c to cancel'
18 | read -n 1 -s
19 | python3 -m pip install pyimg4
20 | fi
21 |
22 | # git submodule update --init --recursive
23 |
24 | if [ ! -e "$oscheck"/gaster ]; then
25 | curl -sLO https://static.palera.in/deps/gaster-"$oscheck".zip
26 | unzip gaster-"$oscheck".zip
27 | mv gaster "$oscheck"/
28 | rm -rf gaster gaster-"$oscheck".zip
29 | fi
30 |
31 | chmod +x "$oscheck"/*
32 |
33 | if [ "$oscheck" = 'Darwin' ]; then
34 | if ! (system_profiler SPUSBDataType 2> /dev/null | grep ' Apple Mobile Device (DFU Mode)' >> /dev/null); then
35 | echo "[*] Waiting for device in DFU mode"
36 | fi
37 |
38 | while ! (system_profiler SPUSBDataType 2> /dev/null | grep ' Apple Mobile Device (DFU Mode)' >> /dev/null); do
39 | sleep 1
40 | done
41 | else
42 | if ! (lsusb 2> /dev/null | grep ' Apple, Inc. Mobile Device (DFU Mode)' >> /dev/null); then
43 | echo "[*] Waiting for device in DFU mode"
44 | fi
45 |
46 | while ! (lsusb 2> /dev/null | grep ' Apple, Inc. Mobile Device (DFU Mode)' >> /dev/null); do
47 | sleep 1
48 | done
49 | fi
50 |
51 | check=$("$oscheck"/irecovery -q | grep CPID | sed 's/CPID: //')
52 | replace=$("$oscheck"/irecovery -q | grep MODEL | sed 's/MODEL: //')
53 | deviceid=$("$oscheck"/irecovery -q | grep PRODUCT | sed 's/PRODUCT: //')
54 |
55 | if [ -e work ]; then
56 | rm -rf work
57 | fi
58 |
59 | if [ ! -e sshramdisk ]; then
60 | mkdir sshramdisk
61 | fi
62 |
63 | if [ "$1" = 'boot' ]; then
64 | if [ ! -e sshramdisk/iBSS.img4 ]; then
65 | echo "[-] Please create an SSH ramdisk first!"
66 | exit
67 | fi
68 |
69 | "$oscheck"/gaster pwn
70 | sleep 1
71 | "$oscheck"/gaster reset
72 | sleep 1
73 | "$oscheck"/irecovery -f sshramdisk/iBSS.img4
74 | sleep 2
75 | "$oscheck"/irecovery -f sshramdisk/iBEC.img4
76 | if [ "$check" = '0x8010' ] || [ "$check" = '0x8015' ] || [ "$check" = '0x8011' ] || [ "$check" = '0x8012' ]; then
77 | sleep 1
78 | "$oscheck"/irecovery -c go
79 | fi
80 | sleep 1
81 | "$oscheck"/irecovery -f sshramdisk/bootlogo.img4
82 | sleep 1
83 | "$oscheck"/irecovery -c "setpicture 0x1"
84 | sleep 1
85 | "$oscheck"/irecovery -f sshramdisk/ramdisk.img4
86 | sleep 1
87 | "$oscheck"/irecovery -c ramdisk
88 | sleep 1
89 | "$oscheck"/irecovery -f sshramdisk/devicetree.img4
90 | sleep 1
91 | "$oscheck"/irecovery -c devicetree
92 | sleep 1
93 | "$oscheck"/irecovery -f sshramdisk/trustcache.img4
94 | sleep 1
95 | "$oscheck"/irecovery -c firmware
96 | sleep 1
97 | "$oscheck"/irecovery -f sshramdisk/kernelcache.img4
98 | sleep 1
99 | "$oscheck"/irecovery -c bootx
100 |
101 | exit
102 | fi
103 |
104 | if [ -z "$1" ]; then
105 | printf "1st argument: iOS version for the ramdisk\n"
106 | exit
107 | fi
108 |
109 | if [ ! -e work ]; then
110 | mkdir work
111 | fi
112 |
113 | if [[ "$deviceid" == *"iPad"* ]] && [[ "$1" == *"16"* ]]; then
114 | ipswurl=$(curl -sL https://api.appledb.dev/ios/iPadOS\;20A5349b.json | "$oscheck"/jq -r .devices\[\"$deviceid\"\].ipsw)
115 | else
116 | if [[ "$deviceid" == *"iPad"* ]]; then
117 | device_os=iPadOS
118 | device=iPad
119 | elif [[ "$deviceid" == *"iPod"* ]]; then
120 | device_os=iOS
121 | device=iPod
122 | else
123 | device_os=iOS
124 | device=iPhone
125 | fi
126 |
127 | buildid=$(curl -sL https://api.ipsw.me/v4/ipsw/$1 | "$oscheck"/jq '[.[] | select(.identifier | startswith("'$device'")) | .buildid][0]' --raw-output)
128 | if [ "$buildid" == "19B75" ]; then
129 | buildid=19B74
130 | fi
131 | ipswurl=$(curl -sL https://api.appledb.dev/ios/$device_os\;$buildid.json | "$oscheck"/jq -r .devices\[\"$deviceid\"\].ipsw)
132 | fi
133 |
134 | "$oscheck"/gaster pwn
135 | "$oscheck"/img4tool -e -s shsh/"${check}".shsh -m work/IM4M
136 |
137 | cd work
138 | ../"$oscheck"/pzb -g BuildManifest.plist "$ipswurl"
139 | ../"$oscheck"/pzb -g "$(awk "/""${replace}""/{x=1}x&&/iBSS[.]/{print;exit}" BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1)" "$ipswurl"
140 | ../"$oscheck"/pzb -g "$(awk "/""${replace}""/{x=1}x&&/iBEC[.]/{print;exit}" BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1)" "$ipswurl"
141 | ../"$oscheck"/pzb -g "$(awk "/""${replace}""/{x=1}x&&/DeviceTree[.]/{print;exit}" BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1)" "$ipswurl"
142 |
143 | if [ "$oscheck" = 'Darwin' ]; then
144 | ../"$oscheck"/pzb -g Firmware/"$(/usr/bin/plutil -extract "BuildIdentities".0."Manifest"."RestoreRamDisk"."Info"."Path" xml1 -o - BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | head -1)".trustcache "$ipswurl"
145 | else
146 | ../"$oscheck"/pzb -g Firmware/"$(../Linux/PlistBuddy BuildManifest.plist -c "Print BuildIdentities:0:Manifest:RestoreRamDisk:Info:Path" | sed 's/"//g')".trustcache "$ipswurl"
147 | fi
148 |
149 | ../"$oscheck"/pzb -g "$(awk "/""${replace}""/{x=1}x&&/kernelcache.release/{print;exit}" BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1)" "$ipswurl"
150 |
151 | if [ "$oscheck" = 'Darwin' ]; then
152 | ../"$oscheck"/pzb -g "$(/usr/bin/plutil -extract "BuildIdentities".0."Manifest"."RestoreRamDisk"."Info"."Path" xml1 -o - BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | head -1)" "$ipswurl"
153 | else
154 | ../"$oscheck"/pzb -g "$(../Linux/PlistBuddy BuildManifest.plist -c "Print BuildIdentities:0:Manifest:RestoreRamDisk:Info:Path" | sed 's/"//g')" "$ipswurl"
155 | fi
156 |
157 | cd ..
158 | "$oscheck"/gaster decrypt work/"$(awk "/""${replace}""/{x=1}x&&/iBSS[.]/{print;exit}" work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]dfu[/]//')" work/iBSS.dec
159 | "$oscheck"/gaster decrypt work/"$(awk "/""${replace}""/{x=1}x&&/iBEC[.]/{print;exit}" work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]dfu[/]//')" work/iBEC.dec
160 | "$oscheck"/iBoot64Patcher work/iBSS.dec work/iBSS.patched
161 | "$oscheck"/img4 -i work/iBSS.patched -o sshramdisk/iBSS.img4 -M work/IM4M -A -T ibss
162 | "$oscheck"/iBoot64Patcher work/iBEC.dec work/iBEC.patched -b "rd=md0 debug=0x2014e wdt=-1 serial=3 `if [ "$check" = '0x8960' ] || [ "$check" = '0x7000' ] || [ "$check" = '0x7001' ]; then echo "-restore"; fi`" -n
163 | "$oscheck"/img4 -i work/iBEC.patched -o sshramdisk/iBEC.img4 -M work/IM4M -A -T ibec
164 |
165 | "$oscheck"/img4 -i work/"$(awk "/""${replace}""/{x=1}x&&/kernelcache.release/{print;exit}" work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1)" -o work/kcache.raw
166 | "$oscheck"/Kernel64Patcher work/kcache.raw work/kcache.patched -a
167 | "$oscheck"/kerneldiff work/kcache.raw work/kcache.patched work/kc.bpatch
168 | "$oscheck"/img4 -i work/"$(awk "/""${replace}""/{x=1}x&&/kernelcache.release/{print;exit}" work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1)" -o sshramdisk/kernelcache.img4 -M work/IM4M -T rkrn -P work/kc.bpatch `if [ "$oscheck" = 'Linux' ]; then echo "-J"; fi`
169 | "$oscheck"/img4 -i work/"$(awk "/""${replace}""/{x=1}x&&/DeviceTree[.]/{print;exit}" work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | sed 's/Firmware[/]all_flash[/]//')" -o sshramdisk/devicetree.img4 -M work/IM4M -T rdtr
170 |
171 | if [ "$oscheck" = 'Darwin' ]; then
172 | "$oscheck"/img4 -i work/"$(/usr/bin/plutil -extract "BuildIdentities".0."Manifest"."RestoreRamDisk"."Info"."Path" xml1 -o - work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | head -1)".trustcache -o sshramdisk/trustcache.img4 -M work/IM4M -T rtsc
173 | "$oscheck"/img4 -i work/"$(/usr/bin/plutil -extract "BuildIdentities".0."Manifest"."RestoreRamDisk"."Info"."Path" xml1 -o - work/BuildManifest.plist | grep '' |cut -d\> -f2 |cut -d\< -f1 | head -1)" -o work/ramdisk.dmg
174 | else
175 | "$oscheck"/img4 -i work/"$(Linux/PlistBuddy work/BuildManifest.plist -c "Print BuildIdentities:0:Manifest:RestoreRamDisk:Info:Path" | sed 's/"//g')".trustcache -o sshramdisk/trustcache.img4 -M work/IM4M -T rtsc
176 | "$oscheck"/img4 -i work/"$(Linux/PlistBuddy work/BuildManifest.plist -c "Print BuildIdentities:0:Manifest:RestoreRamDisk:Info:Path" | sed 's/"//g')" -o work/ramdisk.dmg
177 | fi
178 |
179 | if [ "$oscheck" = 'Darwin' ]; then
180 | hdiutil resize -size 256MB work/ramdisk.dmg
181 | hdiutil attach -mountpoint /tmp/SSHRD work/ramdisk.dmg
182 |
183 | "$oscheck"/gtar -x --no-overwrite-dir -f other/ramdisk.tar.gz -C /tmp/SSHRD/
184 |
185 | #if [ ! "$2" = 'rootless' ]; then
186 | # curl -LO https://nightly.link/elihwyma/Pogo/workflows/build/root/Pogo.zip
187 | # mv Pogo.zip work/Pogo.zip
188 | # unzip work/Pogo.zip -d work/Pogo
189 | # unzip work/Pogo/Pogo.ipa -d work/Pogo/Pogo
190 | # rm -rf /tmp/SSHRD/usr/local/bin/loader.app/*
191 | # cp -R work/Pogo/Pogo/Payload/Pogo.app/* /tmp/SSHRD/usr/local/bin/loader.app
192 | # mv /tmp/SSHRD/usr/local/bin/loader.app/Pogo /tmp/SSHRD/usr/local/bin/loader.app/Tips
193 | #fi
194 |
195 | hdiutil detach -force /tmp/SSHRD
196 | hdiutil resize -sectors min work/ramdisk.dmg
197 | else
198 | if [ -f other/ramdisk.tar.gz ]; then
199 | gzip -f -k -d other/ramdisk.tar.gz
200 | fi
201 |
202 | "$oscheck"/hfsplus work/ramdisk.dmg grow 300000000 > /dev/null
203 | "$oscheck"/hfsplus work/ramdisk.dmg untar other/ramdisk.tar > /dev/null
204 |
205 | #if [ ! "$2" = 'rootless' ]; then
206 | # curl -LO https://nightly.link/elihwyma/Pogo/workflows/build/root/Pogo.zip
207 | # mv Pogo.zip work/Pogo.zip
208 | # unzip work/Pogo.zip -d work/Pogo
209 | # unzip work/Pogo/Pogo.ipa -d work/Pogo/Pogo
210 | # mkdir -p work/Pogo/uwu/usr/local/bin/loader.app
211 | # cp -R work/Pogo/Pogo/Payload/Pogo.app/* work/Pogo/uwu/usr/local/bin/loader.app
212 |
213 | # "$oscheck"/hfsplus work/ramdisk.dmg rmall usr/local/bin/loader.app > /dev/null
214 | # "$oscheck"/hfsplus work/ramdisk.dmg addall work/Pogo/uwu > /dev/null
215 | # "$oscheck"/hfsplus work/ramdisk.dmg mv /usr/local/bin/loader.app/Pogo /usr/local/bin/loader.app/Tips > /dev/null
216 | #fi
217 | fi
218 | python3 -m pyimg4 im4p create -i work/ramdisk.dmg -o work/ramdisk.im4p -f rdsk
219 | python3 -m pyimg4 img4 create -p work/ramdisk.im4p -m work/IM4M -o sshramdisk/ramdisk.img4
220 | "$oscheck"/img4 -i other/bootlogo.im4p -o sshramdisk/bootlogo.img4 -M work/IM4M -A -T rlgo
221 |
222 | rm -rf work
223 |
--------------------------------------------------------------------------------
/recovery/enterrecovery.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | #set -e
4 |
5 | #change script activated working directory to current directory
6 | cd "$(dirname "$0")"
7 |
8 | os=$(uname)
9 | dir="$(pwd)/binaries/$os"
10 |
11 | deviceUDID = null
12 | outputConsole = null
13 |
14 | echo 'MiniKick working...'
15 | echo $("$dir"/ideviceinfo | grep "$2: " | sed "s/$2: //")
16 |
17 | killall iproxy
18 |
19 | idevicepair pair
20 |
21 | #write temp file with the device info
22 | ideviceinfo > outputConsole
23 |
24 | #find the UDID in the temp file
25 | grabbedUDIDinfo=$(grep 'UniqueDeviceID:' outputConsole)
26 | #echo "$grabbedUDIDinfo"
27 |
28 | #search and fix UDID
29 | fixedUDID=${grabbedUDIDinfo/UniqueDeviceID: /}
30 |
31 | echo 'Great success!'
32 | echo 'Detected UDID: '$fixedUDID
33 |
34 | #now kick the detected UDID device into recovery mode!
35 | ./ideviceenterrecovery $fixedUDID
36 |
--------------------------------------------------------------------------------
/recovery/exitrecovery.sh:
--------------------------------------------------------------------------------
1 | #!/usr/bin/env bash
2 |
3 | #set -e
4 |
5 | #change script activated working directory to current directory
6 | cd "$(dirname "$0")"
7 |
8 | echo 'MiniKick working...'
9 |
10 |
11 | #now kick the detected UDID device into recovery mode!
12 | ./irecovery -n
13 |
--------------------------------------------------------------------------------
/recovery/ideviceenterrecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/recovery/ideviceenterrecovery
--------------------------------------------------------------------------------
/recovery/irecovery:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Hackt1vator/palera1n_gui/5e2fd06653f341e67b829f284b106ed7cc3ac5bf/recovery/irecovery
--------------------------------------------------------------------------------
/recovery/outputConsole:
--------------------------------------------------------------------------------
1 | ActivationState: Activated
2 | ActivationStateAcknowledged: true
3 | BasebandActivationTicketVersion: V2
4 | BasebandCertId: 524245983
5 | BasebandChipID: 101
6 | BasebandKeyHashInformation:
7 | AKeyStatus: 0
8 | SKeyHash: u+/tcCwvaQ+1Y9t40I4yegCEmB28mALlaROhaIVGBWo=
9 | SKeyStatus: 0
10 | BasebandMasterKeyHash: 8CB15EE4C8002199070D9500BB8FB183B02713A5CA2A6B92DB5E75CE15536182
11 | BasebandRegionSKU: AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA==
12 | BasebandSerialNumber: 0wEgaZAAydF4z8qE
13 | BasebandStatus: BBInfoAvailable
14 | BasebandVersion: 5.03.01
15 | BluetoothAddress: e4:2b:34:83:01:9c
16 | BoardId: 10
17 | BootSessionID: 35D5B295-596C-4770-BA85-7332E62516FE
18 | BrickState: false
19 | BuildVersion: 20B110
20 | CPUArchitecture: arm64
21 | CarrierBundleInfoArray[1]:
22 | 0:
23 | CFBundleIdentifier: com.apple.Vodafone_de
24 | CFBundleVersion: 52.0
25 | GID1: ff
26 | IntegratedCircuitCardIdentity: 89492021186022198100
27 | InternationalMobileSubscriberIdentity: 262022117548257
28 | MCC: 262
29 | MNC: 02
30 | SIMGID1: /w==
31 | Slot: kOne
32 | kCTPostponementInfoAvailable: SIMCarrierInfo
33 | CertID: 524245983
34 | ChipID: 32789
35 | ChipSerialNo: 0wEgaZAAydF4z8qE
36 | DeviceClass: iPhone
37 | DeviceColor: 1
38 | DeviceName: iPhone 8
39 | DieID: 4619666966954030
40 | EthernetAddress: e4:2b:34:83:01:9d
41 | FirmwareVersion: iBoot-8419.40.112
42 | FusingStatus: 3
43 | GID1: ff
44 | HardwareModel: D201AP
45 | HardwarePlatform: t8015
46 | HasSiDP: true
47 | HostAttached: true
48 | IntegratedCircuitCardIdentity: 89492021186022198100
49 | InternationalMobileEquipmentIdentity: 359494087912178
50 | InternationalMobileSubscriberIdentity: 262022117548257
51 | InternationalMobileSubscriberIdentityOverride: false
52 | MLBSerialNumber: FG380640ANBJ0WYA3
53 | MobileSubscriberCountryCode: 262
54 | MobileSubscriberNetworkCode: 02
55 | ModelNumber: MQ6G2
56 | NonVolatileRAM:
57 | StartupMute: MQ==
58 | SystemAudioVolumeSaved: dHJ1ZQ==
59 | allow-root-hash-mismatch: MQ==
60 | auto-boot: dHJ1ZQ==
61 | backlight-level: MTUxMQ==
62 | backlight-nits: MHgwMGFiODhkYw==
63 | boot-args:
64 | boot-breadcrumbs: MWMwMDJiKDIwMDc1MDApIDMwMDBjKDY5NjI2NTYzKSA0MDA0MDAxYSA0MDA0MDAxMyA0MDA0MDAxMSA0MDA0MDAxYyAzMDAwZCA8RE9ORT4gPENPTU1JVD4gPEJPT1Q+IDFjMDAyYigyMDA3NTAwKSAzMDAwYyg2OTYyNjU2MykgNDAwNDAwMWEgNDAwNDAwMTMgNDAwNDAwMTEgNDAwNDAwMWMgMzAwMGQgPERPTkU+IDxDT01NSVQ+IA==
65 | bootdelay: MA==
66 | com.apple.System.fp-state: v9Z7KgAAAABoAQAAAAAAAL/Weyo=
67 | com.apple.System.tz0-size: MHgxN0NDMDAw
68 | fm-account-masked: bOKAouKAouKAouKAouKAokBn4oCi4oCi4oCi4oCi4oCiLm5ldA==
69 | fm-activation-locked: WUVT
70 | fm-spkeys: YnBsaXN0MDDWAQIDBAUGBwgJCgsUUXBRc1FsUWJRdlFpTxA5BG9aFNiirq8NrEWl+O8UNLa1p3t0MrmHcTAOFcF6ejtt7iF78X+RS3/Oulax81PSnu181tuL0ALdTxAgDCfZ7Xa7gYiv0q/GMRFHXDY2ftHvrsj+6hp/E8+wK1RPEBDfi7fBqhRDy40YUf3eUNYxM0HExK7Ba/Xo0gwNDhNRMVEy0g8QERJRbFFzEAAQYNIPEBESEAEIFRcZGx0fIV2Ak5yho6WqrK6wsrcAAAAAAAABAQAAAAAAAAAVAAAAAAAAAAAAAAAAAAAAuQ==
71 | fm-spstatus: WUVT
72 | nonce-seeds: AgAAAAAAAAAAADAAAAAAAAAAuhCkZ0ojD3PcUi7DrXXzwenBf4xqg9MTUeSWize79mVfYFBiC+fM/WL6vCpQ+mHPAQkAAAAAAAAAAAAAAAAAAAD9vbtk3KcMRkp+sXwX7y6WAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAGEqXSt068cYFARKxjJ6+OQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAClcgx4O/7AbDkP6dUaGX7kAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACOnovaTTR2q0ANZdnM19NqAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAJfJ385rQDyyqeGP2fhN3DQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADBo8z1uV0L+ugKAYfpYvkcAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA3EEnxeIXfylBXKPD+5sNkAAAAAAAAAAAAAAAAAAAAAAgAAAAAAAAAgdTYxBjCjSjupl3wrsP88AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHfJ3sCPJn50NWfORIYfS94AAAAAAAAAAAAAAAAAAAAA
73 | obliteration: RUFDUyBEb25lIEAxNjc1MTcxNTU0LCBDYWxsZXI6IE4vQSwgUmVhc29uOiBEaXNlbWJhcmsgW2dGOiAweDAwMDAwMDAwMDAwMDAwMDBd
74 | usbcfwflasherResult: Tm8gZXJyb3Jz
75 | PRIVersion_Major: 0
76 | PRIVersion_Minor: 0
77 | PRIVersion_ReleaseNo: 5
78 | PairRecordProtectionClass: 4
79 | PartitionType: GUID_partition_scheme
80 | PasswordProtected: false
81 | PhoneNumber: +49 152 08314964
82 | PkHash: Hz9b38WSRX/cE6qam0xEfaM6v7nHw0ZdWjTPu2WOXVU=
83 | ProductName: iPhone OS
84 | ProductType: iPhone10,4
85 | ProductVersion: 16.1.2
86 | ProductionSOC: true
87 | ProtocolVersion: 2
88 | ProximitySensorCalibration: f3oABTIAHgDaRpZBuWjhQQAAyEJCU3NBQ56mQQAAFkNCU3NBQ56mQQAAFkPtzzND4hiVwDymn0SeVqBEQyKhROA6okSLS9RBRjXaQaHJ60HH/etBAAAgQlNyDEPBEgJCAABIQlLh1UM1MNVDVkULRt4SiEMxqTwgASMIGnPWm0W9XatDtAZwRQMAAAAAAACG
89 | RegionInfo: ZD/A
90 | SIMGID1: /w==
91 | SIMStatus: kCTSIMSupportSIMStatusReady
92 | SIMTrayStatus: kCTSIMSupportSIMTrayInsertedWithSIM
93 | SerialNumber: F4GW7BJTJC67
94 | SoftwareBehavior: BQQAAAAAAAAAAAAAAAAAAA==
95 | SoftwareBundleVersion:
96 | SupportedDeviceFamilies[1]:
97 | 0: 1
98 | TelephonyCapability: true
99 | TimeIntervalSince1970: 1675622926.203648
100 | TimeZone: Europe/Berlin
101 | TimeZoneOffsetFromUTC: 3600.000000
102 | TrustedHostAttached: true
103 | UniqueChipID: 4619666966954030
104 | UniqueDeviceID: 6f816bae100a04143496166739d8c36158d87712
105 | UseRaptorCerts: true
106 | Uses24HourClock: false
107 | WiFiAddress: e4:2b:34:83:01:9b
108 | kCTPostponementInfoPRIVersion: 0.0.5
109 | kCTPostponementInfoServiceProvisioningState: true
110 | kCTPostponementStatus: kCTPostponementStatusActivated
111 |
--------------------------------------------------------------------------------