Skip to content

Instantly share code, notes, and snippets.

@sklaw
sklaw / README.MD
Last active March 5, 2023 06:02 — forked from FrankSpierings/README.MD
Apple Device Enrollment Program (DEP) - ByPass MDM Policy using Checkra1n exploit

Steps

1. Install iproxy

  • On MacOS, run: brew install usbmuxd

2. Boot ramdisk

  • Follow instructions here to boot the ramdisk for modifying iOS image.
    • After this, you should be able to ssh into the device.

3. Modify CloudConfigurationDetails.plist

@sklaw
sklaw / How to use this class?
Last active January 27, 2024 07:25
C++ Rational Number Class
You can use this class in the same way you use "int".
The following operators are available:
+ - * /
++ --
+= -= *= /=
< > <= >= == !=
<< >>
For example:
RationalNum a, b;