Hyper-V: AttackBridge installation guide for Windows

Hardware requirements:

  1. Resources: at least 4 cores, 16 gb ram, 40 gb of free disk space;

  2. CPU capable of hardware virtualisation;

Prerequisites for Hyper-V:

To run AttackBridge in a Linux VM it needs to met following prerequisites:

  • a modern Ubuntu LTS Linux installation (24.04);

  • at least 2 CPU cores;

  • 6 GB or more of RAM;

  • at least 30 GB of free disk space;

  • a network adapter in a Bridge mode to be capable of ARP discovery and to have an ability to accept incoming connections.

The following guide will provide instructions for Microsoft Hyper-V:

  • Proceed with an installation, using defaults; reboot your computer if the installer asks to:

  • Please look up your network connection name, it would be useful for the next step:

  • Open a command line prompt ( Press “Win” key, then type “cmd”, then press “Enter”); you need to run the following command to configure the network adapter that will be used for bridging, using its name from the previous step:

multipass set local.bridged-network="Ethernet"
  • Then run the following command to create a new primary VM:

multipass launch --name primary --cpus 2 --disk 30G --memory 6G --network bridged
  • Answer “yes” if prompted; then wait till the end of installation:

  • Now you can open Linux shell with “multipass shell” command:

multipass shell
  • Copy and paste this two lines to your terminal, one by one:

curl -fsSL [<https://get.docker.com>](<https://get.docker.com/>) -o [get-docker.sh](<http://get-docker.sh/>)
sudo sh ./get-docker.sh
  • docker should be installed, and you can check if it functions properly with the following command:

sudo docker run hello-world
  • Now that the system has been updated and docker is installed, it is ready for your AttackBridge script. Simply paste your script into the terminal once you're ready.

Last updated