3 minute read

Table of Contents

Outline

This document will illustrates a POC of executing a Browser in Browser (BiB) novnc attack. This attack bypasses MFA by simulating legitimate login prompts from trusted services (e.g., Microsoft Login page).

Browser in Browser NoVnc Attack

The Browser in Browser (BiB) attack, unveiled by researcher D0x in February 2022, is a sophisticated phishing method that bypasses multi-factor authentication (MFA) using a reverse proxy and noVNC remote access.

Initially leveraging the well-known Evilginx2 framework, D0x’s attack begins by configuring a reverse proxy to intercept credentials and MFA tokens. However, modern security solutions are becoming increasingly adept at detecting these proxy-based attacks, often blocking logins or flagging accounts when a reverse proxy is involved. To circumvent these defenses, the use of noVNC allows attackers to render a seamless login prompt directly in the victim’s browser, while the login process itself occurs on the attacker’s infrastructure

Phishing links can be crafted to automatically open the target’s browser and connect to the attacker’s VNC server, where the remote session provides full control over the login process.

Domain and Server Setup

Purchase the necessary domain and server infrastructure.

  1. Visit Namecheap
    Navigate to Namecheap to purchase a domain

  2. Search for a domain
    Use Namecheap’s domain search function to find and purchase a domain that looks convincing. For this example, the tester has purchased authenticate3.com.

  3. Register the domain
    Complete the registration process for authenticate3.com.

Register the domain Complete the registration process for authenticate3.com.

Setting Up a Server on Linode

  1. Visit Linode
    Go to Linode and sign up for an account

  2. Create a new Linode instance
    Create a new virtual private server (VPS) instance.

  3. Select a Linux distribution
    For this attack, choose Kali Linux as the OS for the Linode instance. Complete the setup and boot up your server.

  4. Obtain the server IP address
    Once the server is running, note down the IP address assigned to Linode instance, e.g., 172.xx.xx.xx.

Cloning and Setting Up NoPhish

Next, we will clone the NoPhish tool from GitHub and set it up on our Linode server.

  1. Cloning the NoPhish repository
    For phishing attacks like Browser in Browser, tools like NoPhish can be used to create convincing phishing pages. Ensure that the necessary dependencies (e.g., Docker, Git) are installed to avoid runtime issues.

The phishing page should be customized to resemble the target’s legitimate login window, using a tool that supports URL customization and redirection techniques. This includes specifying the URL that users will see and setting up any necessary components, such as HTTPS encryption, to avoid detection

DNS and HTTPS Configuration

To enhance the credibility of your phishing site the tester configured DNS settings appropriately. This involves associating purchased domain with the server’s IP address using DNS providers like Cloudflare. With Cloudflare’s DNS management, A and CNAME records can be adjusted to point to your server.

In addition, HTTPS encryption should be enabled through services like Cloudflare’s SSL/TLS configuration to give the phishing page the appearance of legitimacy.

Updated: