Skip to main content

DFU, Recovery Mode, & Jailbreak Iphone

DFU MODE
DFU stands for Download Firmware Update yang berguna untuk recovery iPhone/iPod Touch

Cara untuk masuk kedalam DFU mode adalah sbb:
-Connect the iPhone to your computer and launch iTunes
-Turn the iPhone off (hold down the power button at the top of the iPhone)
-Hold down the sleep/power button and home button together for exactly 10 seconds, then release the power button
-Continue to hold down the Home button until a message appears in iTunes telling you an iPhone in recover mode has been detected
-When you are in DFU mode your iPhone screen will be completely black

Note: Even though the screen is black, that doesn’t mean the device can’t be interfaced with either iTunes or a custom firmware client (for jailbreaking, etc). Remember that if you see the restore logo, iTunes logo, or any message on the iPhone screen, you are not in DFU mode but standard Recovery Mode. Again, DFU mode is signified by having a completely black screen on the device. If anything else is the case, repeat the steps above until you enter into DFU mode successfully.



RECOVERY MODE
-Make sure you have the latest version of iTunes
-Plug your USB cable into your computer.
-Turn your iPhone off by holding the power button down until you see “slide to power off”. Do as instructed.
-Now press and hold the Home button while reconnecting the USB cable to your iPhone. After iPhone is connected it should power on the device.
-Continue holding the Home button, you will see the Apple logo appear and then finally a “Connect to iTunes” will be displayed, now is the time to release the Home button. You will then see the following image:







Apa perbedaan THETERED JAILBREAK vs UNTHETERED JAILBREAK vs SEMITHETERED JAILBREAK?

UNTHETERED JAILBREAK:
The cream of the crop. The most desirable jailbreak of them all. An untethered jailbreak allows you to jailbreak your device, run Cydia apps and tweaks, and reboot your device at will with no consequences.

SEMI THETERED JAILBREAK:
This is a jailbreak that allows you to reboot your device, but not without some consequences. After rebooting, you may not be able to run any Cydia jailbreak apps, and even some stock apps like Safari may be inaccessible. A SemiTethered jailbreak is normally a tethered jailbreak with a package installed that allows you to reboot with limited use. You must perform a tethered boot (see video for explanation) to regain full functionality to your jailbroken device. Much better than a tethered jailbreak, but not quite as good as the untethered variety.

THETERED JAILBREAK:
The least desirable of the three. With a tethered jailbreak you cannot reboot your device at all without doing a tethered boot. A tethered boot requires access to a computer, so if you’re out an about, and your device reboots, you’re up a creek without a paddle.

Yang di perlukan untuk Jailbreak iPhone/iPod:
1. Download IOS untuk iPhone/iPod official
3. Download iTunes yang sesuai IOS
2. Download Jailbreak tools yang sesuai

Untuk lebih jelas nya bisa lihat example dari How to jailbreak iphone 4 dengan ios 5.0.1 ini

Setelah Jailbreak selesai dan Cydia sudah terinstall, kita harus menambahkan repository dari Cydia yaitu repo: cydia.hackulo.us dan repo.insanelyi.com

lebih lengkap nya gunakan link ini untuk melihat TopTen Cydia Repo

Setelah menambahkan repo ke dalam Cydia, kita tinggal install "installous" package dari insanelyi repo / hackulo.us repo sebagai pengganti appstore bawaan.

Comments

Popular posts from this blog

Menginstall Nginx, MySQL, PHP on Ubuntu Bionic Beaver (18.04 LTS)

TAHAP I - INSTALL NGINX ns@ubuntu:~$ sudo apt install nginx TEST INSTALLASI NGINX ns@ubuntu:~$ curl http://ip_localhost TAHAP II - INSTALL MYSQL ans@ubuntu:~$ sudo apt install mysql-server ans@ubuntu:~$ sudo mysql_secure_installation Set password untuk mySql secure connection ans@ubuntu:~$ sudo mysql mysql> SELECT user,authentication_string,plugin,host FROM mysql.user; mysql>ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password'; dimana 'password' di set sesuai keperluan lalu cek lagi, mysql> SELECT user,authentication_string,plugin,host FROM mysql.user; TAHAP III - INSTALL PHP ans@ubuntu:~$ sudo apt install php-fpm php-mysql ubah cgi.fix_pathinfo dari 1 menjadi 0 di file php.ini ans@ubuntu:~$ sudo nano /etc/php/7.2/fpm/php.ini cgi.fix_pathinfo=0 restart service php: ans@ubuntu:~$ sudo systemctl restart php7.2-fpm KONFIG AGAR NGINX MENGGUNAKAN PHP PROCESSOR edit file def

Darkstat - Nework Traffic Analyzer atau Monitor Jaringan

Darkstat - Nework Traffic Analyzer atau Monitor Jaringan Apa itu Darkstat? Darkstat adalah pengumpul statistik jaringan. Secara efektif, ini adalah paket sniffer yang berjalan sebagai proses latar belakang pada Kabel / DSL router, mengumpulkan segala macam statistik berguna tapi menarik, Dan melayani mereka melalui HTTP. Fitur Darkstat Grafik lalu lintas Melacak lalu lintas per host. Melacak lalu lintas per port TCP dan UDP untuk setiap host. Embedded web-server dengan deflate compression. Asynchronous reverse DNS resolution menggunakan proses child. Kecil. Portable. Single-threaded. Efisien. Instalasi Darkstat di Ubuntu ~$ sudo Apt-get install darkstat Ini akan menyelesaikan instalasi. Setelah Anda menyelesaikan instalasi, Anda perlu mengedit file yang terletak di /etc/darkstat/init.cfg START_DARKSTAT = no menjadi START_DARKSTAT = iya Start darkstat  # / Etc / init.d / darkstat start Ini akan memulai proses darkstat Arahkan browser Anda di http:

Mount ISO image file on HP-UX

There are 2 ways to mount iso file in hp-ux 1) using LVM method (to copy ISO into a logical volume) is the same as for older HP-UX releases: 1. Find out the size of the ISO image: # du -k /data/myImage.iso NOTE: The size will be in Kb. 2. Create a logical volume for the ISO image: # lvcreate -L -n iso /dev/vg00 NOTE: The name of the logical volume will be /dev/vg00/iso 3. Copy the ISO file to the raw logical volume: # dd if=/data/myImage.iso of=/dev/vg00/riso bs=64k 4. Create a temporary directory and mount the /dev/vg00/iso volume # mkdir /iso_image # mount /dev/vg00/iso /iso_image NOTE: For HP-UX 11.11 you must install the latest CDFS patches: PHCO_25841 Add Rock Ridge extension to mount_cdfs(1M) PHKL_26269 Rock Ridge extension for ISO-9660 PHKL_34153 CDFS cumulative patch 2) Available in HP-UX 11.31 0909: ISOIMAGE-ENH. Provides a new DLKM module fspd. Required to mount, read and umount the ISO image file. The comm