User Tools

Site Tools


docu:csheet:sysadm:venv:docker:run_kali

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
docu:csheet:sysadm:venv:docker:run_kali [2020/03/21 23:20]
admin
docu:csheet:sysadm:venv:docker:run_kali [2020/03/21 23:24] (current)
admin
Line 4: Line 4:
 Ever wondered you could run a **docker container with Kali Linux** in it, and still access your **physical network devices**, and be able to **capture packets**, and so on?? Ever wondered you could run a **docker container with Kali Linux** in it, and still access your **physical network devices**, and be able to **capture packets**, and so on??
 <code bash> <code bash>
 +#!/bin/bash
 +xhost +local: >/dev/null 2>&1
 docker run -it --rm \ docker run -it --rm \
  --mount type=bind,source=`pwd`/root,destination=/root \  --mount type=bind,source=`pwd`/root,destination=/root \
Line 9: Line 11:
  --mount type=bind,source=`pwd`/usr,destination=/usr \  --mount type=bind,source=`pwd`/usr,destination=/usr \
  --mount type=bind,source=`pwd`/var,destination=/var \  --mount type=bind,source=`pwd`/var,destination=/var \
- --privileged --network=host kalilinux/kali-rolling bash 2>/dev/null+ --privileged --network=host kalilinux/kali-rolling bash 
 +xhost -local: >/dev/null 2>&1
 </code> </code>
 A self-destructive docker container mounting different paths from an already configured kali-linux filesystem (mounting this paths could be ommited) A self-destructive docker container mounting different paths from an already configured kali-linux filesystem (mounting this paths could be ommited)
 +\\
 +xhost (+|-)local: accepts/denies xorg connections from localhost (might be dangerous, but it works)
 \\ \\
 --privileged is needed to capture packets, use special devices, etc --privileged is needed to capture packets, use special devices, etc
 \\ \\
 --network=host speaks by itself --network=host speaks by itself
docu/csheet/sysadm/venv/docker/run_kali.1584832823.txt.gz · Last modified: 2020/03/21 23:20 by admin