> For the complete documentation index, see [llms.txt](https://mobile.mrw0l05zyn.cl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mobile.mrw0l05zyn.cl/android/analisis-dinamico/anti-root.md).

# Anti-root

## Bypass de anti-root

### Frida

```shell
# Utilizando script
frida -U -f <app-package-name> -l <script.js> --no-pause

# Utilizando Frida CodeShare
frida -U -f <app-package-name> --codeshare <path-script> --no-pause
## dzonerzy/fridantiroot
frida -U -f <app-package-name> --codeshare dzonerzy/fridantiroot --no-pause
```

### Objection

```shell
objection --gadget <app-package-name> explore --startup-command "android root disable"
```
