Docker container to run the Drozer computer client
1.9K
Docker container to run the Drozer computer client (version 3.0.1).
If you want to build this container yourself, use the docker build command to build the Docker container:
docker build -t yogehi/drozer_docker .
Alternatively, use the pre-built Docker container at https://hub.docker.com/r/yogehi/drozer_docker:
docker pull yogehi/drozer_docker
First, obtain a shell into the container:
docker run -it yogehi/drozer_docker
Then run the Drozer command to connect to the phone:
drozer console connect --server <phone IP address>
adb on Windows host (Docker Desktop)First, forward port 31415 to the phone via adb:
adb forward tcp:31415 tcp:31415
Next, obtain a shell into the container while adding an address to the container's Hosts file:
docker run -it --add-host host.docker.internal:host-gateway yogehi/drozer_docker
Finally, connect to drozer:
drozer console connect --server host.docker.internal
adb on Linux host (docker service) and have adb listen on all network interfacesssFirst, forward port 31415 to the phone via adb and have adb listen on all interfaces:
adb -a forward tcp:31415 tcp:31415
Next, obtain a shell into the container while exposing
docker run -it --add-host host.docker.internal:host-gateway yogehi/drozer_docker
Finally, connect to drozer:
drozer console connect --server host.docker.internal
adb on Linux host (docker service) and mount the container's network interfaces to your host's network interfacesFirst, forward port 31415 to the phone via adb:
adb forward tcp:31415 tcp:31415
Next, obtain a shell into the container while exposing
docker run -it --net host yogehi/drozer_docker
Finally, connect to drozer:
drozer console connect --server localhost
Content type
Image
Digest
sha256:89c13c614…
Size
758.7 MB
Last updated
about 1 year ago
docker pull yogehi/drozer_docker