Skip to content

Docker Mac OSX

v1s1t0r1sh3r3 edited this page Apr 9, 2017 · 22 revisions

This is in alpha version. The part of connecting to X Window system is working. Investigating yet how to connect wireless interfaces to docker container.

The recommended docker run command to be run under Mac OSX host is:

docker run --rm -ti --name airgeddon --net=host --privileged -p 3000:3000 -v /path/to/some/dir/on/your/host:/io -e DISPLAY=$(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}') v1s1t0r1sh3r3/airgeddon

Parameters explanation:

  • --rm -> Ephemeral containter. It will be removed on exit.
  • -ti -> Attach pseudo-TTY terminal to the container as interactive.
  • --name airgeddon -> Name for the container.
  • --net=host -> Is needed to have access to the host network interfaces inside the container.
  • --privileged -> Needed to have permissions over network interfaces (mode switching).
  • -p 3000:3000 -> Open port to access to BeEF control panel from the host.
  • -v /path/to/some/dir/on/your/host:/io -> It maps a directory from host to the container. Useful to use external files like dictionaries or whatever.
  • -e DISPLAY=$(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}') -> It overwrites the needed var to connect to local X Window system (It's understood you installed XQuartz for mac).
  • v1s1t0r1sh3r3/airgeddon -> Is the name and tag of the image. v1s1t0r1sh3r3/airgeddon is the stable version and is the same as v1s1t0r1sh3r3/airgeddon:latest. Alternatively you can use v1s1t0r1sh3r3/airgeddon:beta or v1s1t0r1sh3r3/airgeddon:alpha for development versions.

Mac OSX Tips

Don't forget to replace on docker command the string "/path/to/some/dir/on/your/host" with a path of an existing directory of your choice on your host machine. That directory will be the "input/output" point for the script. For example, if you place a dictionary.txt file there, inside the script you must access to it as "/io/dictionary.txt". If you capture a trophy or a Handshake file, save it at "/io/" dir to access it from the host.

You'll need a X window system running on your Mac OSX. You can install XQuartz, and after installing it, be sure of allowing connections from network clients in preferences as shown on next image:

After that, you'll need to disable access control or add your ip to the authorized clients list:

xhost + -> To disable completely the restriction.

Or the more recommended:

xhost $(ifconfig en0 | grep inet | awk '$1=="inet" {print $2}') -> To allow only local ip, this is more restrictive and secure.

Clone this wiki locally