2022-12-07
Access Kali On Chromebook Or Anywhere

setup tty

i don’t think this will work on android, but let’s see?

1
2
3
ttyd -p <port> -c <username>:<password> <shell_path>
# don't specify interface since that will screw things up

setup x11vnc and novnc

notice novnc has clipboard function now. share clipboard content across devices via the sidebar menu,

in reference of kali official

x11vnc is mirroring the current x11 session. i set it without password.

1
2
3
#retrieved from fish history
x11vnc -threads -forever

then launch novnc server

1
2
novnc  --vnc localhost:5900 --listen 10020

use this url to access from chromebook:

1
2
http://<kali_ip>:10020/vnc.html?host=<kali_ip>&port=10020

Read More

2022-08-09
X11Vnc Test On Kali

better use nomachine instead, which is based on nx

password: 472831

commands:

1
2
3
4
5
6
7
8
# necessary env for gui target, though may not suitable for xvfb
export XAUTHORITY=/root/.Xauthority
export DISPLAY=:1
# kill previous running x11vnc, if exists
joker list | grep x11vnc | awk '{print $1}' | xargs -iabc kill -s KILL abc
# launch new vnc
joker x11vnc -threads -forever -rfbauth /root/.vnc/passwd

Read More