Remote Qubes User Testing (Running Qubes in the Browser)

Original forum link
https://forum.qubes-os.org/t/13817
Original poster
deeplow
Created at
2022-09-22 21:12:33
Last wiki edit
2023-09-07 05:43:23
Revisions
10 revisions
Posts count
20
Likes count
18

Testing Qubes OS is not an easy task. It's not like you can run Qubes on the browser... or can you?!

That's what we're about to find out...

record8|690x460

What you'll need

âš ī¸ A word of caution

This setup involves completely invalidating the security properties of your Qubes installation. Do this only on a device used exclusively for testing.

Additionally, participants will have access to the device as though they were next to you. If you connect the device to you home's WiFi, you should consider the risk of them being able to see its password or even find your home's physical address by your home network's name or the ones around.

Overview

We have two devices: the participant's, which just needs to run Tor Browser and the UX Person's, which is running Qubes.

qubes-remote-testing.drawio|690x225

🙈 Limitations

1. Create qube: remote-admin

Create a new qube called remote-admin with the following settings: | | | |----|----| | Type | StandaloneVM | | Template | debian-11 (âš ī¸ debian 10 won't work) |

â„šī¸ Advanced: for simplicity of software installation and persistence we create a standalone qube. Advanced users can probably figure out how to do the same with templates and app qubes.

2. Install remote screen sharing software in dom0:

â„šī¸ instructions borrow from here (in case they break check there).

Run the following in a dom0 terminal:

# install the qubes contributor's repository
sudo qubes-dom0-update qubes-repo-contrib

# install the remote-desktop software
sudo qubes-dom0-update qubes-remote-desktop

# set "VNCPASS" as the password
vncpasswd

#enable the qubes-x0vncserver (for some reason)
qvm-service --enable dom0 qubes-x0vncserver

🔄 and then start the dom0 VNC service

systemctl start qubes-x0vncserver@$(whoami)

2. Configure policy dom0 <-> remote-admin

In dom0's terminal type the following:

echo "qubes.ConnectTCP +5900 remote-admin @default allow target=dom0" | sudo tee /etc/qubes/policy.d/30-remote-admin.policy

3. (optional) Check that you have dom0 access from remote-admin

In remote-admin:

  1. 🔄 open a terminal and run qvm-connect-tcp 5900:@default:5900

â„šī¸ Good point to test At this stage you can check if you are correctly getting. You can install a VNC viewer like remmina and connect to 127.0.0.1:5900. Then it will ask the password VNCPASS (you set it earlier).

vnc_remmina2|551x500, 75%


đŸ› ī¸ Troubleshooting * vnc connection failure: too many security failures Just restart the vnc server in dom0 systemctl restart qubes-x0vncserver@$(whoami)


4. Install the guacamole server (vnc to web)

â„šī¸ Guacamole essentially allows users to connect via their web browser to a VNC server.

Still in the remote-admin qube

  1. You install it like this:
    sudo apt install -y guacd libguac-client-vnc0
    sudo apt install -y tomcat9 tomcat9-admin tomcat9-common tomcat9-user
    
  2. Download the latest guacamole .war from https://guacamole.apache.org/releases/

  3. Verify the file integrity with the sha256 hashes on the website (can save you some troubleshooting time in case your download breaks)

  4. Copy the downloaded file onto /var/lib/tomcat9/webapps/guacamole.war (may need sudo)

  5. restart tomcat for the newly installed .war sudo systemctl restart tomcat9

  6. Edit the file /etc/guacamole/user-mapping.xml (you may need to create /etc/guacamole/)

    <user-mapping>
        <authorize username="user" password="pass">
            <protocol>vnc</protocol>
            <param name="hostname">127.0.0.1</param>
            <param name="port">5900</param>
            <param name="password">123456</param>
        </authorize>
    </user-mapping>
    

  7. Restart guacamole to apply the changes: sudo systemctl restart guacd.

  8. Open firefox on the webpage: http://127.0.0.1:8080/guacamole.

    You should see a login page. Your credentials are: user: user pass: pass

    vnc_guac|690x433, 50%

:partying_face: Hurray! Now you have a functioning dom0 remote access via the web browser.

But this is not super useful since it is just local access and you can't give that address for a user to test. In the next section, we'll show you how you can generate an address where your users can test your system.

4. Create a .onion address for it

  1. sudo apt install tor
  2. edit the file /etc/tor/torrc and add the following text at the end and save it:
    HiddenServiceDir /var/lib/tor/guacamole_vnc
    HiddenServicePort 80 127.0.0.1:8080
    HiddenServiceVersion 3
    
  3. restart Tor to apply the changes sudo systemctl restart tor
  4. Obtain your .onion address sudo cat /var/lib/tor/guacamole_vnc/hostname

    â„šī¸ Save this link as that will be what you share with your participants. Just be aware that they have to install the Tor Browser in order to access it.

  5. Grab some tea đŸĩ while the onion address propagates through the Tor network. (max 10 mins)

  1. Send yoursite.onion/guacamole with participants
  2. Tell them to log in with: user: user pass: pass

When you restart your computer

Everything with 🔄 you have to run every time you restart your computer / remote-admin qube.

Tips & Tricks

đŸ‘ģ Hiding remote-admin qube

Because an extra qube is running it could interfere with a user's experience (e.g. they will see it in the qube domains widget). To hide it, you can delete sys-whonix or sys-usb and rename remote-admin to either one. An unsuspecting users won't see any difference.

Making this faster

See this related discussions.

Credits