In my /system/bin/ I have a executable named toybox, and various other directory entries in that directory symlinked to the toybox, eg basename and [.
How do I uninstall toybox?
Context: I believe it's messing with advanced root detection of Citi banking (my Revolut app is working just fine with Magisk's SafetyNet Fix)
mount -o rw,remount /system/bin; rm /system/bin/toybox. Find all applets:find /system/bin/ -type l -exec ls -l '{}' ';' | grep toyboxand delete them as well if you want. Also you can have anothertoyboxin/vendor/bin/. Repeat the same for that too. But I won't advise this. Your device may get into bootloop because some core functions (includinginitservices) depend on commands provided bytoybox. Or at least put some alternative likebusyboxon$PATH. Also I'm not sure why you think it's messing with root detection. – Irfan Latif Oct 20 '22 at 09:05toyboxis not an uninstallable package. So you are forcefully deleting it, not uninstalling. – Irfan Latif Oct 20 '22 at 09:13