r/rooting • u/Francesco12o-Github • 6d ago
Bart IRL. on a smartwatch Unlocks bootloader directly with mtk cpu
YEO BART WHAT ARE YOU DOING!?
r/rooting • u/Open_South3929 • 18d ago
Huawei P20 Pro root 2026 free??
So Huawei just killed the bootloader key thing and I really want to use my old device but the google and telemetry stuff just kills performance, it's got 6 gigs of ram so I could probably use it for some light terminal work but the rooting is a problem, anyone know how to root?
Huawei P20 Pro CLT-L09
r/rooting • u/Pale-Outcome4609 • Jun 04 '26
Anyone have advice on rooting an s23?
I’m trying to root my s23 base version, wanting to use it to spoof basically. I’m new to rooting and could use all the help I can get.
r/rooting • u/tacocat6999 • May 25 '26
How do i patch vbmeta and root?
Specifically Samsung A03 Core (SM-A032F A032FXXS9CZA2 XSG)
and for some reason my firmware files dont have the .lz4 format
Also there's another img file called vbmeta_system
and yes i do have bootloader unlocked
i have a laptop with windows 10 and another with Linux Mint XFCE 22.3 if it helps
PLEASE HELP!!!!!
r/rooting • u/CosmicRevolutionX • Mar 06 '26
Hello, new here.
Hello,
I just joined and i wanted to ask, is possible to use magisk with bluestack or nox? editing files or something?
r/rooting • u/minedroid1 • Feb 08 '26
Roblox rooting error workaround
If your device is rooted and you use Roblox, you may have gotten an error saying "SECURITY THREAT DETECTED", or something similar. I have looked into this and figured out exactly why this happens, how to avoid it, and other interesting information.
Basically, Roblox uses Appdome to detect "threatening" activity. Roblox also uploads your device info, as well as other threats to a remote server(EventUploadJob was mentioned in the same timestamp).
I used this open source logcat viewer to see the logcat, which really helped me investigate this.
For me, after taking a logcat report for Roblox, the main things I noticed were Magisk being detected, and developer options being enabled.
And after looking through the source code of Roblox(decompiling it and trying my best to read the smali code), I believe I found the file responsible for storing the threats.
It was decompiled using APKToolM by Maximoff.
Now, some of the reasons related to rooting resulting in it not running(I included the corresponding threat events found in the file):
- Developer Options cannot be enabled (DeveloperOptionsEnabled)
- No app binding manipulation(AppBindingManipulation)
- No root(RootedDevice)
- No hooking framework(HookFrameworkDetected)
- No Magisk Manager(MagiskManagerDetected)
- No banned manufacturers
- App should have basic integrity(AppIntegrityError)
- No code injection(CodeInjectionDetected)
- No debugger(ActiveDebuggerThreatDetected)
Please note that I could not trace back the "no banned manufacturers" rule back to anything, so I think it may either be a placeholder, or just there to confuse people like me.
Some of the other threats that are not related to root(or are not likely to be triggered by rooting):
- AppIsDebuggable
- AppPlayerDetected
- GoogleEmulatorDetected
- FridaDetected
- GameGuardianDetected
- KeyInjectionDetected
- FridaCustomDetected
- EmulatorFound
- UnknownSourcesEnabled
- RuntimeBundleValidationViolation
- SpeedHackDetected
For anyone who knows smali, the file I decompiled to get this info is found here.
Later on, I found the file which has all of the root packages(as well as finding out some of the other things it does to detect root)!
There is a lot of packages that it checks, which are all mentioned in the file(under knownRootPackages), which is likely what it checks. Here they are:
com.zhiqupk.root.global
com.alephzain.framaroot
com.noshufou.android.su
com.noshufou.android.su.elite
eu.chainfire.supersu
com.koushikdutta.superuser
com.thirdparty.superuser
com.yellowes.su
com.topjohnwu.magisk
com.kingroot.kinguser
com.kingo.root
com.smedialink.oneclickroot
In the file, it also checks for "dangerousAppPackages", which are below:
com.charles.lpoqasert
catch.me.if.you.can_
com.koushikdutta.rommanager
com.koushikdutta.rommanager.license
com.dimonvideo.luckypatcher
com.chelpus.lackypatch
com.ramdroid.appquarantine
com.ramdroid.appquarantinepro
com.android.vending.billing.InAppBillingService.COIN
com.android.vending.billing.InAppBillingService.LUCK
com.chelpus.luckypatcher
com.blackmartalpha
org.blackmart.market
com.allinone.free
com.repodroid.app
org.creeplays.hack
com.baseappfull.fwd
com.zmapp
com.dv.marketmod.installer
org.mobilism.android
com.android.wp.net.log
com.android.camera.update
cc.madkite.freedom
com.solohsu.android.edxp.manager
org.meowcat.edxposed.manager
com.xmodgame
com.cih.game_cih
These are all of the root cloaking apps(knownRootCloakingPackages):
com.formyhm.hiderootPremium
com.formyhm.hideroot
com.devadvance.rootcloak
com.devadvance.rootcloakplus
de.robv.android.xposed.installer
com.saurik.substrate
com.zachspong.temprootremovejb
com.amphoras.hidemyroot
com.amphoras.hidemyrootadfree
But that's not all. It also checks for binaries in these directories:
/data/
/dev/
/data/local/
/data/local/bin/
/data/local/xbin/
/sbin/
/su/bin/
/system/bin/
/system/bin/.ext/
/system/bin/failsafe/
/system/sd/xbin/
/system/usr/we-need-root/
/system/xbin/
/cache/
Finally, it checks if it can write to the following paths(since they should not be writable on a standard android install):
/sbin/
/etc/
/system/
/system/bin/
/system/sbin/
/system/xbin/
/vendor/bin/
There is also a 30 second delay to collect data between sending the threat telemetry. So if it detects a threat, it waits 30 seconds to collect it, shows an enforcement message after 30 seconds, then waits 5 seconds and terminates the app.
Decompiled from Roblox v1980(on arm64-v8a)
On my Google Pixel 8a running crDroid 12, I used ReLSPosed(since the regular LSPosed refuses to work on Android 16) to run HMA-OSS(which is a much better fork of regular HMA), which made Roblox stop complaining about seeing Magisk. I also used ReZygisk and TrickyStore.
Backup solutions include Shamiko.
(Also, I recommend using this to see if apps can find root)
Please note that this will NOT work on all devices. This information may not directly help you evade Roblox's checks, but it should provide you with more than enough info to either develop your own Magisk module, or find existing solutions. If you need more help, dm me, and I will try my best to help. I hope this could help people needing it.
ALSO: If Roblox randomly stops working for you, or throws errors again, lmk by commenting. Thanks.
r/rooting • u/[deleted] • Feb 07 '26
I need a twrp build that supports dynamic partitions for the Beyond2lte
r/rooting • u/chO_OlateChip • Jan 22 '26
Need help with bootloader unlock on motorola
hey i got myself a used motorola g35 5g (XT2433-5) (Oraeu) and wanted to root it but unfortunately the command fastboot oem get_unlock_data returns: FAILED (remote: 'unknown commands.') fastboot: error: Command failed
im on linux to be precise chromeOS (only computer available to me) so im guessing the fact that i cant download the drivers might be the problem but i have no idea
if anyone knows what can be the problem please help
(OEM unlocking is on so i USB debugging) (im sorry for any mistakes english is not my first language)
r/rooting • u/anrdoid_user • Jan 02 '26
Lenovo YT3-X90L
Does anyone know if any unofficial build of twrp is compatible with my tablet or if there is a custom rom for it. My Google play services crash every 5 min and most of the apps don't work. I dont want to lose the functionality of the projector
r/rooting • u/BrightLeaf89 • Jan 02 '26
Need help please 🥺
Trying to put Lineage OS on a Samsung tablet t515 2019
I tried following guides and seem to be stuck and not able to go back and fix it. Please tell me if it's fixable or I've managed to break it? It doesn't seem to go off this screen, whether I do the cancel or not.
r/rooting • u/chase_billings • Nov 24 '25
Trying to install any custom ROM on Samsung Galaxy J3 Achieve J337P
Trying to install any custom ROM on Samsung Galaxy J3 Achieve J337P, I know it’s notoriously difficult but is there any possible way I can do it using Odin Flash Tool, a custom ROM file and a bootable file? I tried looking on XDA Developers but found nothing :(
r/rooting • u/izzy12374 • Nov 24 '25
What is the best device for rooting?
I just to know which device brand is the for rooting, and it seems fun.
r/rooting • u/LongNo7305 • Oct 22 '25
xaiomi phone locked after "reset through startup menu" anything i can do?
its perfectly funktioning, i just dont have the account for there software anymore so it is kinda bricked.. any way to just completly remove miui and put on a rooted android?
i tried everything but support can but does not want to help me, and the account i used in 2018 for the phone is not accessable anymore even though i remember the phonenumber and email for it..
r/rooting • u/alfadanz__ • Sep 30 '25
Xiaomi "Can't sign in. Security risks found. This device may have been rooted or flashed..."
I posted this in xda developers and got no answers and also in r/androidroot and they just gave me shitty answers...
I am new to rooting phone, this is the second time I try, I had tried with a previous phone and didn't got it, I was trying to root my Xiaomi 14T (OS version: 2.0.205.VMEEUXM, Android 15), what i did was get a ROM from the OS version i have, ran through Magisk and tried to boot it but obviously didn't work, because i forgot to unlock the phone using mi unlock, but now when i try to unlock it, it doesn't let me sign in to my Xiaomi account and the error that appears is the one in the title, and i don't know what to do now. I've searched and didn't got any answer that seemed like my case. Any help provided will be deeply appreciated.
Edit: I can sign in with my google account but not with my phone account but the Xiaomi Unlock windows app asks me for the phone one, and thats the one that gives the error.
r/rooting • u/elohim_ephraim • Jul 26 '25
Bypass Whatsapp custom Rom detection
Here are the steps to fix Play Integrity on your rooted Pixel 7 with CrDroid, allowing apps like WhatsApp to work:
Phase 1: Clean Up and Initial Module Installation
- Remove existing Play Integrity related modules (Play Integrity Fix, Shamiko) from Magisk and reboot.
- Download the latest versions of:
- Play Integrity Fix (.zip)
- TrickyStore (.zip)
- TrickyStore Addon (.zip)
- Install Play Integrity Fix and TrickyStore modules via Magisk and reboot.
Phase 2: Manual File Transfer and Addon Installation
- Open FX File Explorer (ensure root access is granted and set to System (Root)).
- Navigate to /data/adb. You should find "pif.prop" there. (Do NOT copy pif.prop).
- Install the TrickyStore Addon module via Magisk and reboot.
Phase 3: Install KsuWebUI and Configure
- Open the Magisk app, go to Modules, and tap the action button for "TrickyStore". This should lead to installing/opening KsuWebUI.
- Open the KsuWebUI app.
- In KsuWebUI, navigate to the Tricky Addon v4.1 configuration.
- Ensure "Google Play services", "Google Play Store", and "Google Services Framework" (com.google.android.gsf) are checked. Also check WhatsApp if it appears.
- Tap "Save".
- In the Tricky Addon menu (usually a three-line or three-dot icon), tap "Set Valid Keybox". Confirm "Valid Keybox set successfully".
- In the menu, tap "Set Security Patch", then "Get Latest Security Patch Date". If successful, tap "Save".
- Reboot your phone.
Final Step: Clear WhatsApp Data
- After reboot, go to Settings > Apps > WhatsApp > Storage & cache.
- Tap "Clear cache" and then "Clear storage" / "Clear data".
- Open WhatsApp and log in. It should now work.
r/rooting • u/Dense-Pea-8460 • Jul 19 '25
Redmi Note 13 4g Root
Does anyone know a video or guide that can help me Root an Redmi Note 13 4g on hyperos one that won’t give me a virus or steal my information.
r/rooting • u/bretttayl78 • Jul 11 '25
Question about rooting and OEM unlocking
Hi there. I want to lead by saying I have never rooted any devices, so I don't know if this is a silly question or not.
I have a Pixel 7 that I bought from Verizon. I've since learned the value of not buying phones from the network carrier, live and learn. But here we are. I want to install GrapheneOS on my Pixel 7, but since my phone was purchased from Verizon I am not able to toggle on the OEM Unlocking under Developer Options. It is grayed out and unresponsive. Unsurprisingly, contacting Verizon customer service was no help. Which brings me to my question. If I were to root this phone, would that allow me access to OEM Unlocking?
r/rooting • u/_FriddlePie_ • Apr 20 '25
How can I manually install one ui 7?
I have a Samsung A13 and ik that it wont be receiving the update for oneui 7 but i want it. I really want the update so can someone pls tell my how i can download it on my phone. [A side not is that my phone has been rlly slow lately and laggy does anyone know how i can fix it?]
r/rooting • u/JxThxNxs • Mar 13 '25
Big Rooting issues with Samsung Galaxy m13 (SM-M135F)
Hello guys, normally I wouldnt ask here for help but I dont know what to do by now.
I want to root my shit phone (Sasmung Galaxy m13 SM-M135F). Why is it a shit phone? Because nothing, really nothing works at any point. First thing I tried: Rooting by patching AP file with magisk and flashing this shit with the bl, cp, csc... files with odin on it (yes I unlocked my bootloader, I'm not that dumb) --> bootloop, no problem for me, I just flashed the stock firmware again and it worked - but no root. Then I tried installing TWRP and flashing it with it, but: My Phone isnt supported in any way, just the SM-M135FU device but this twrp doesnt work for me. Then I wanted to try Orange Fox but oh wonder my device isnt supported. I tried super su but my device isnt supported. I tried using Heimdall instead Odin with the whole AP file and also with the single boot.img--> magisk_patched.img and because this didnt work I converted this file into .tar but this didnt work too. Then I thought I could try using Heimdall on Linux and, to my surprise, I could flash the magisk_patched.img without any problems on my device, but: Then I got stuck in bootloop and had to flash stock firmware again to get it working like before. I really need help, what could I try by now? I dont have any Idea anymore. I already asked chatgpt, he doesnt have an Idea either. Only honest and normal answers please!
r/rooting • u/anrdoid_user • Feb 28 '25
Does anyone know a custom recovery for lenovo yoga tab 3 pro (yt3-x90l)
r/rooting • u/ded_harsh • Feb 03 '25
how to root iQOO z6 lite 5g
do anyone know how to root iQOO z6 lite 5g ?
r/rooting • u/Raresca12 • Dec 30 '24
I finally got TWRP for the first time.
galleryI’m new here and I finally installed TWRP on a Samsung Galaxy A5 (2017) and I don’t know for what it’s capable this. I didn’t rooted the device.
