All Projects → lukaszlach → kali-desktop

lukaszlach / kali-desktop

Licence: other
🐳 Kali Linux desktop running in Docker on any operating system, in your web browser or a VNC client, with Kali top10 tools pre-installed.

Programming Languages

Makefile
30231 projects
Dockerfile
14818 projects

Projects that are alternatives of or similar to kali-desktop

easy-novnc
Single-binary noVNC instance, web UI, and multi-host proxy.
Stars: ✭ 142 (+97.22%)
Mutual labels:  novnc, vnc
ubuntu-vnc-xfce-g3
Headless Ubuntu/Xfce containers with VNC/noVNC (Generation 3)
Stars: ✭ 83 (+15.28%)
Mutual labels:  novnc, vnc
soulseek-docker
🐳 Soulseek Over noVNC Docker Container
Stars: ✭ 149 (+106.94%)
Mutual labels:  novnc, vnc
MLab
“云上炼丹师”中的云
Stars: ✭ 54 (-25%)
Mutual labels:  kde, vnc
TermDroid
GUI Installer for various OS running on Termux
Stars: ✭ 18 (-75%)
Mutual labels:  xfce, lxde
iCtrl
UofT Engineering Lab Remote
Stars: ✭ 91 (+26.39%)
Mutual labels:  novnc, vnc
ubuntu-vnc-xfce-firefox
Retired. Headless Ubuntu/Xfce containers with VNC/noVNC and Firefox (Generation 1)
Stars: ✭ 20 (-72.22%)
Mutual labels:  novnc, vnc
ubuntu-vnc-xfce-chromium
Retired. Headless Ubuntu/Xfce container with VNC/noVNC and Chromium (Generation 1)
Stars: ✭ 20 (-72.22%)
Mutual labels:  novnc, vnc
gahshomar
A Persian (Jalali/Farsi) calendar for Linux
Stars: ✭ 69 (-4.17%)
Mutual labels:  kde, xfce
ubuntu-vnc-xfce
Headless Ubuntu/Xfce containers with VNC/noVNC (Generation 1)
Stars: ✭ 51 (-29.17%)
Mutual labels:  novnc, vnc
kali-wsl
KALI LINUX : WINDOWS SUBSYSTEM FOR LINUX
Stars: ✭ 56 (-22.22%)
Mutual labels:  xfce, kali-linux
TouchBarServer
Touch Bar over VNC
Stars: ✭ 77 (+6.94%)
Mutual labels:  vnc
cloud-desktops
Cloud-based Virtual Desktops on Google Cloud Platform
Stars: ✭ 14 (-80.56%)
Mutual labels:  kali-linux
bing-ip2hosts
bingip2hosts is a Bing.com web scraper that discovers websites by IP address
Stars: ✭ 99 (+37.5%)
Mutual labels:  kali-linux
guacamole-auth-jwt
Guacamole authentication extension based on JWT.
Stars: ✭ 28 (-61.11%)
Mutual labels:  vnc
docker-images
Kali and Parrot OS docker images accessible via VNC, RDP and Web
Stars: ✭ 66 (-8.33%)
Mutual labels:  vnc
007-TheBond
This Script will help you to gather information about your victim or friend.
Stars: ✭ 371 (+415.28%)
Mutual labels:  kali-linux
hack-tools
"Кали-заменитель". Располагает в себе большое количество утилит для взлома.
Stars: ✭ 39 (-45.83%)
Mutual labels:  kali-linux
wifite2
Rewrite of the popular wireless network auditor, "wifite" - original source by @derv82 right over
Stars: ✭ 290 (+302.78%)
Mutual labels:  kali-linux
dextop
Dextop - Linux-based distribution workstation on Android
Stars: ✭ 24 (-66.67%)
Mutual labels:  vnc

lukaszlach / kali-desktop

Docker pulls Docker stars

Kali Desktop provides Docker images with Kali Linux and a VNC server. This project allows you to pick Kali Linux version, favorite desktop environment, and run it on any system - Linux, MacOS or Windows - to access remotely and execute commands using a VNC client or a web browser.

  • Kali Linux 2018.2
    • Xfce - :xfce
    • LXDE - :lxde
    • KDE - :kde
  • Kali Linux 2018.2 with Top10 tools pre-installed
    • Xfce - :xfce-top10

Running

All required services and dependencies are inside the Docker images so only web browser and one command are needed to start kali-desktop:

However the most common case is kali-desktop running with host network in privileged mode, so tools like network sniffing work properly and with full speed without Docker network filtering the traffic. See all available Docker image tags on Docker Hub.

# run on host network
docker run -d --network host --privileged lukaszlach/kali-desktop:xfce

# run on Docker network
docker run -d -p 5900:5900 -p 6080:6080 --privileged lukaszlach/kali-desktop:xfce

After the container is up you can access Kali Linux Desktop under http://localhost:6080, the hostname can differ if you are doing this on a remote server. vnc_auto.html will connect you automatically, vnc.html allows some connection tuning.

Docker for Mac works inside a small virtual machine which IP you must use to access the exposed ports or use service like Dinghy.

If you want to customize the container behavior you can pass additional parameters:

docker run -d \
    --network host --privileged \
    -e RESOLUTION=1280x600x24 \
    -e USER=kali \
    -e PASSWORD=kali \
    -e ROOT_PASSWORD=root \
    -v /home/kali:/home/kali \
    --name kali-desktop \
    lukaszlach/kali-desktop:xfce

Run parameters:

  • --network host - optional but recommended, use the host network interfaces, if you do not need to use this option you have to manually publish the ports by passing -p 5900:5900 -p 6080:6080
  • --privileged - optional but recommended
  • -e RESOLUTION - optional, set streaming resolution and color depth, default 1280x600x24
  • -e USER - optional, work as a user with provided name, default root
  • -e PASSWORD - optional, provide a password for USER, default kali
  • -e ROOT_PASSWORD - optional, provide password for root, default root
  • -v /home/kali:/home/kali - optional, if USER was provided it is a good idea to persist user settings, work files and look-and-feel

Exposed ports:

  • 5900/tcp - VNC
  • 6080/tcp - noVNC, web browser VNC client

Extending

Create Dockerfile.xfce-web and modify the image as desired, below example installs Kali Linux web application assessment tools:

FROM lukaszlach/kali-desktop:xfce

RUN apt-get update && \
    apt-get install -y kali-linux-web \
    apt-get clean && \
    rm -rf /var/lib/apt/lists/*

Build the image:

docker build \
    -f Dockerfile.xfce-web \
    -t kali-desktop:xfce-web \
    .

Run the image:

docker run --network host --privileged kali-desktop:xfce-web

Licence

MIT License

Copyright (c) 2018 Łukasz Lach [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].