You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The version of busybox shipped with drozer is an ancient x86 build which doesn't run on most modern devices.
It's also unclear why these modules rely on busybox, since the commands needed by the modules above (find, nc) are already present and executable on a reasonably modern non-rooted Android device.
What needs to happen:
Rewrite the modules so they don't require busybox. Maybe use busybox as a fallback?
Rethink how we do busybox - shipping a random compiled binary is less than ideal, but if we must do it, let's at least make sure we're matching the target platform(s)
The text was updated successfully, but these errors were encountered:
A few modules currently rely on busybox, namely:
shell.send
scanner.misc.readablefiles
scanner.misc.sflagbinaries
scanner.misc.writablefiles
The version of busybox shipped with drozer is an ancient x86 build which doesn't run on most modern devices.
It's also unclear why these modules rely on busybox, since the commands needed by the modules above (
find
,nc
) are already present and executable on a reasonably modern non-rooted Android device.What needs to happen:
The text was updated successfully, but these errors were encountered: