[Tool] Flashe 1.2

Search This thread

Alienware258

New member
Sep 1, 2014
4
0
Welcome to Flashe!:victory:

Flashe is basically an all-in-one installer which only requires a few clicks and you are root,unlocked(bootloader), and you can choose a recovery to install in the process. This is much easier than using ADB commands or fastboot.:good:

The program does included a feature that allows you to use a custom boot image and get rid of the "unlocked bootloader" screen.:)

WARNING: USE AT YOUR OWN RISK

Requirements:
-Atrix HD,Razr HD,Razr MAXX
- .bin logo file(rename to logo when put in flashe folder)
- .iso for your recovery(CWM,TWRP, or Philz)

Future Update:
-Downloads the required files from a server:D
-Menu(choose to install other things
-GUI, instead of text there is a actual button interface.

Errors:
You MUST allow the program to boot you into recovery otherwise the custom recovery is lost due to the android os overwriting it. If you have any other errors pm
me!:cool:

This uses djrbliss's exploit,special thanks to him for his exploit, but the rest is all coded in by me.

Enjoy!
 

Attachments

  • Flashe_by_Alienware258.zip
    1.9 MB · Views: 59
Last edited:

quasihellfish

Senior Member
Mar 11, 2009
210
88
Varies
This uses djrbliss's exploit,special thanks to him for his exploit, but the rest is all coded in by me.

But how is this any different than MythTools? : http://xdaforums.com/showthread.php?t=2262726

And if this is a Windows program, then we have no idea what commands you're sending to the phone. No Open Source? No thanks. I really suggest everybody use Myth instead...

Oh, and Trend Micro identified it as a virus and deleted it: http://about-threats.trendmicro.com/us/malware/ANDROIDOS_ROOTRAZR.A
 
Last edited:

TecknoFreak

Inactive Recognized Contributor

Alienware258

New member
Sep 1, 2014
4
0
But how is this any different than MythTools? : http://xdaforums.com/showthread.php?t=2262726

And if this is a Windows program, then we have no idea what commands you're sending to the phone. No Open Source? No thanks. I really suggest everybody use Myth instead...

Oh, and Trend Micro identified it as a virus and deleted it: http://about-threats.trendmicro.com/us/malware/ANDROIDOS_ROOTRAZR.A

I looked at the threat, and it calls it a threat because it is a rooting tool.

Also,When I first started rooting I did not get how to use it at all(Mythtools).Instead I used programs on my android.So I made this to help new users coming to the atrix community once I finished learning ADB commands and some fastboot commands.


Here is the source:
Code:
adb kill-server
adb wait-for-device
adb push pwn /data/local/tmp/pwn
adb shell chmod 755 /data/local/tmp/pwn
adb push su /data/local/tmp/su
adb push busybox /data/local/tmp/busybox
adb install Superuser.apk
adb shell /data/local/tmp/pwn
adb shell rm /data/local/tmp/pwn
adb shell rm /data/local/tmp/su
adb shell rm /data/local/tmp/busybox
adb reboot
adb wait-for-device 
adb push unlock /data/local/tmp
adb shell chmod 755 /data/local/tmp/unlock
adb shell su -c /data/local/tmp/unlock
adb shell rm /data/local/tmp/unlock
adb reboot bootloader
fastboot getvar all
fastboot continue
adb wait-for-device
adb reboot bootloader
echo [-] To continue you will need a boot file which will
echo [-] replace the "Unlocked Bootloader" image. Name it:
echo [-] logo.bin 
echo [-] Continue when you are in the bootloader and have the file.
pause
fastboot flash logo logo.bin
fastboot continue
echo [-] Processe complete! 
echo [-] -Root installed
echo [-] -Bootloader unlocked
echo [-] ---------------------
echo [-]  This next step will install a recovery.
echo [-] Recovery will allow you to install your own roms,etc(depending on the selected recovery)
echo [-] Rename your recovery image "rec" so it should be 'rec.img' then continue.
pause
adb reboot bootloader
echo [-] Continue once in bootloader
pause
fastboot devices
fastboot flash recovery rec.img
echo [-] Once finished flashing continue...
pause
adb reboot recovery
echo [-] Complete! You now should have recovery installed. Enjoy!
pause
 
Last edited: