Wednesday, June 22, 2022

Kick off Passcode iPhone 6+ iOS 12.5.5

Cellular Bypass - iPhone 6+ Passcode iOS 12.5.5

Experience Story:

Environment: 
-	Windows 10, Ubuntu 22.04 Live, Montery 12.3.1 on Macbook Air 2020

Tool:
-	Checkra1n 0.10.2 (Linux)
-	Checkra1n 0.11.0 (linux)
-	Checkra1n 0.12.4 (Mac)
-	Sliver 5 (Windows)
-	Sliver 6.2 (Mac)
-	Fixm8 – Utility (Mac)

Trial I.
1.	Jailbreak with Checkra1n 0.10.2 (Linux) >> Succeeded
2.	Backup iActivation data with Sliver 5 (Windows) >> Failed
	All data was backuped Except below:
    	-	ic-info.sisv
    	-	ic-info.sisb
    	-	ic-info.sidb
    	-	ic-info.sidt
    All 4 files above is there, but their size is all 0 KB. Allias not backuped properly.
    The backuped was saved on Desktop named “Activation.
    So the backup failed.

Trial II.
1.	Jailbreak with Checkra1n 0.11.0 (Linux) >> Succeeded
2.	Backup iActivation data with Sliver 6.2 (Mac) >> Succeeded
    All data was backuped include all 4 files above.
    Make sure ic-info.sisv have size. It usually have 1 KB.
3.	Erase it with Fixm8-Utility (Mac) & wait till Hello Screen >> Succeeded
    -	Sliver 6.2 (Mac) will notify you to use Fixm8-Utility (Mac) 
        to erase it if ur iOS version is below 13.
4.	Jailbreak with checkra1n 0.12.4 beta (Mac) >> succeeded
5.	Restore iDevice Activation data With Sliver 6.2 (Mac) >> Succeeded

6.	Power-off manually and power-on again.

   -	Tap & tap like usual. After reach home screen, wait 5 – 10 minutes
        without internet on.
   -	Then restart once again. The iDevice was untethered and Data, Call,
        iCloud-signin, iMessages, and Facetimes should normally run.



Thanks to:
Checkra1n, Sliver, & Fixm8-Utility Creators and Developers & Coconut Coder

Sunday, January 16, 2022

Symbol URL Replacement

------------------------------
%3d > =
%3A > :
%2F > /
%3F > ?
-------------------------------

Wednesday, January 12, 2022

Little Talk about Redmi Note 5 Unlocking Bootloader

THIS IS ASSUMPTION. IT NEED TO BE APPROVED ==========================================

I Can be unlocked Officially or unofficially: 
  - Builtin-Official CPU and eMCP 
  - RPMB is provisoned   

II Can be unlocked unofficially
  - Builtin CPU and eMCP was repartitioned
  - RPMB is still provisoned 

III Can't be unofficially nor even officially unlocked: 
  - eMCP or CPU was Changed
  - RPMB isn't provisioned or failed.
  
  

Tuesday, January 11, 2022

Microsoft Security Essential Update Failed Windows 7 SP1 (Solved)

Bismillahirrahmanirrahim

Solving MSE (Microsoft Security Essential) Failed to Update After fresh install windows 7 SP1 (64 bit). My Windows Version is:
6.1.7601 Service Pack 1 Build 7601 (64bit) ==========================================

First Try.
------------
Download and Update Windows update standalone intaller files below:
1. KB976932
2. KB2653956
3. KB3035126
4. KB3045685
5. KB2564958
6. KB2813430

- everytime i update per file one by one, i restart.
- everytime i update per file, i restart then update MSE soon.
- and it turns out that the MSE failed to update.

except after the 6th file update (KB2813430),
Microsoft Security Essential is succesfully updated.
Sign of succeed update is "MSE icon colour was changed from red to green (checked)".



Second Try
----------
[ AFTER FRESH INSTALL WIN 7 SP1 64-Bit AGAIN ]


 Assumption:
 - Cause after updating with File KB2813430 from first try,
  The MSE can be successfully updated, i do this try:

 Excecution:
  Just Update with:
	- file KB2813430
	- (without the order of update like first try)
	- Alhamdulilah The MSE can be successfully updated.


This is my experience. how is ur experience?
Share and comment is opened to you.
Thanks so much.... :-)

Saturday, December 25, 2021

Create XML Script for SP Flash Tool

Bismillahirrohmaanirrahiim

This is sample script of manual-format-address for SP-Flash-Tool. I attend this based on SP Flash Tool v5.1920 Help



This script is used for sp_flash_tool_cli_mode (flashtool -i file.xml)

AlhamdulillahirabbilAalamiin
See You on the next Article, and
May it be usefull and attend benefits and good :-)

Friday, December 24, 2021

ASUS X00ID ZC554KL FASTBOOT BATCH SCIPT

Bismillahirrahmaanirrahiim

::
:: file create by liunianliang for windows fastboot flash image
::
:: 20170315
::
@echo off
@echo ------------------------
@echo Begin fastboot flashall
@echo ------------------------

@setlocal enabledelayedexpansion

:: get platform
@set platform=8937
@set buildtype=eng
@set input=%1%
@set deviceId=%2%
@set flashtype=%3%

if !input! == 0 (
    @echo Earse Data: No
) else (
    @echo Earse Data: Yes
)

if "!deviceId!" == "" (
    @echo Support All device !
) else (
    @echo Support one device: !deviceId!
)

if "!deviceId!" == "" (
@fastboot getvar platform 2>&1 | findstr platform > %~dp0\platform.txt
@fastboot getvar build-type 2>&1 | findstr build-type > %~dp0\build-type.txt
@fastboot getvar secret-key-opt 2>&1 | findstr secret-key-opt > %~dp0\secret-key-opt.txt
) else (
@fastboot -s !deviceId! getvar platform 2>&1 | findstr platform > %~dp0\platform.txt
@fastboot -s !deviceId! getvar build-type 2>&1 | findstr build-type > %~dp0\build-type.txt
@fastboot -s !deviceId! getvar secret-key-opt 2>&1 | findstr secret-key-opt > %~dp0\secret-key-opt.txt
)

@for /f "tokens=2 delims=: " %%i in (%~dp0\platform.txt) do @(
    set "platform=%%i"
    @echo platform is !platform!

    @for /f "tokens=2 delims=: " %%a in (%~dp0\build-type.txt) do (
        set "buildtype=%%a"
    )

    @for /f "tokens=2 delims=: " %%k in (%~dp0\secret-key-opt.txt) do (
        set "secret_key=%%k"
        set /p =!secret_key! %~dp0\default_key.bin
    )
    @echo buildtype is !buildtype!
    if !buildtype! == user (
        if "!deviceId!" == "" (
            fastboot flash frp-unlock %~dp0\default_key.bin
            fastboot flashing unlock
            fastboot flashing unlock_critical
        ) else (
            fastboot -s !deviceId! flash frp-unlock %~dp0\default_key.bin
            fastboot -s !deviceId! flashing unlock
            fastboot -s !deviceId! flashing unlock_critical
        )
    )

    :: partition and file name
    call:flash_one_image modem  NON-HLOS.bin !platform!
    call:flash_one_image cmnlib cmnlib.mbn !platform!
    call:flash_one_image cmnlibbak cmnlib.mbn !platform!
    call:flash_one_image cmnlib64 cmnlib64.mbn !platform!
    call:flash_one_image cmnlib64bak cmnlib64.mbn !platform!
    call:flash_one_image keymaster keymaster.mbn !platform!
    call:flash_one_image keymasterbak keymaster.mbn !platform!
    call:flash_one_image aboot emmc_appsboot.mbn !platform!
    call:flash_one_image abootbak emmc_appsboot.mbn !platform!
    call:flash_one_image boot boot.img !platform!
    call:flash_one_image sec sec.dat !platform!
    call:flash_one_image sbl1 sbl1.mbn !platform!
    call:flash_one_image sbl1bak sbl1.mbn !platform!
    call:flash_one_image rpm rpm.mbn !platform!
    call:flash_one_image rpmbak rpm.mbn !platform!
    call:flash_one_image tz tz.mbn !platform!
    call:flash_one_image tzbak tz.mbn !platform!
    call:flash_one_image devcfg devcfg.mbn !platform!
    call:flash_one_image devcfgbak devcfg.mbn !platform!
    call:flash_one_image dsp adspso.bin !platform!
    call:flash_one_image cache cache.img !platform!
    call:flash_one_image mdtp mdtp.img !platform!
    call:flash_one_image APD APD.img !platform!
    call:flash_one_image ADF ADF.img !platform!
    call:flash_one_image splash splash.img !platform!
    if !input! == 0 (
        @echo not earse data partition...
    ) else (
        call:flash_one_image userdata userdata.img !platform!
    )
    call:flash_one_image system system.img !platform!

    if "!deviceId!" == "" (
        fastboot erase boot
        fastboot reboot bootloader
        ping 127.0.0.1 -n 5 > nul
        fastboot flash frp-unlock %~dp0\secret_key.bin
        fastboot flashing unlock
        fastboot flashing unlock_critical
    ) else (
        fastboot -s !deviceId! erase boot
        fastboot -s !deviceId! reboot bootloader
        ping 127.0.0.1 -n 5 > nul
        fastboot -s !deviceId! flash frp-unlock %~dp0\secret_key.bin
        fastboot -s !deviceId! flashing unlock
        fastboot -s !deviceId! flashing unlock_critical
    )
    call:flash_one_image boot boot.img !platform!

    if !buildtype! == user (
        if "!deviceId!" == "" (
            fastboot flashing lock
            fastboot flashing lock_critical
            if !flashtype! == tool (
                fastboot flash frp-unlock %~dp0\secret_key.bin
            )
        ) else (
            fastboot -s !deviceId! flashing lock
            fastboot -s !deviceId! flashing lock_critical
            if !flashtype! == tool (
                fastboot -s !deviceId! flash frp-unlock %~dp0\secret_key.bin
            )
        )
    )

    if "!deviceId!" == "" (
        if !input! == 0 (
            @echo not do factory reset...
        ) else (
            fastboot oem recovery_and_reboot
        )
    ) else (
        if !input! == 0 (
            @echo not do factory reset...
        ) else (
            fastboot -s !deviceId! oem recovery_and_reboot
        )
    )
)

@echo All is download
goto:eof

:: function for download
:flash_one_image
@echo --------------------------------
@echo begin to flash partition %1
@if exist %~dp0%3_%2 (
    if "!deviceId!" == "" (
        fastboot erase %1
        fastboot flash %1 %~dp0%3_%2
    ) else (
        fastboot -s !deviceId! erase %1
        fastboot -s !deviceId! flash %1 %~dp0%3_%2
    )
) else (
    if exist %~dp0%2 (
        if "!deviceId!" == "" (
            fastboot erase %1
            fastboot flash %1 %~dp0%2
        ) else (
            fastboot -s !deviceId! erase %1
            fastboot -s !deviceId! flash %1 %~dp0%2
        )
    ) else (
        @echo can't flash partion %1
    )
)
@echo done!
@echo --------------------------------



Alhamdulillaahirabbil 'Aalamiin
May it be userfull and attend power to be good ... :-)

Monday, December 20, 2021

REDMI 9 [ LANCELOT ] THE SYSTEM HAS BEEN DESTROYED

BISMILLAAHIRRAHMAANIRRAHIIM

Redmi 9 Full Specs, Please visit links below:

  • Lancelot on gsmarena
  • Redmi 9 on mifirm
  • This phone has Mediatek MT6769V/CU Helio G80 (12 nm)
  • MT6768 platform
  • eMMC 5.1

  • BEFORE SOLVING
    ------------------------------------------------
    - SYSTEM HAS BEEN DESTROYED (BOOTLOOP)
    - MIUI Version: V12.5.1.0.RJCIDXM
    - Device Type: lancelot_id_global
    - Official fastboot and recovery >> Good
    - Volup+Voldown + Power >> Factory Mode
    
    
    WORKAROUND
    ------------------------------------------------
    1. Identify via preloader or brom mode
    2. Write partitions below from the official firmware file with same version:
        - RECOVERY
        - VBMETA_SYSTEM
        - VBMETA_VENDOR
        - LOGO
        - BOOT
    3. Restart, Insya Allah the Problem will be Solved
    



    ALHAMDULILLAAHIRRAHMAANIRRACHIIM
    May it be usefull and good :-)