I’ve been moving to Qubes OS this past year. This past week I needed a windows hacking lab for some research. I am going to isloate the network from the other VMs to prevent any malicious code from getting out of control.
Installation
qvm-create -s --label red --hvm win10
qvm-prefs -s win10 memory 4096
qvm-start --cdrom=OtherVM:/home/user/Downloads/SomeWindowsISO.iso win10
qvm-start win10
Windows 10 Install
Follow the windows installation instructions here
- Update the OS
- Install desired software
1.Ollydbg- Brave Browser
- Wireshark
- qvm-clone win10 win10-backup
Networking VM
We need a proxy machine to send traffic. Some malware will reach out to the web and we need respond.
- Deploy Debian VM
- Install INetSim and PolarProxy. Link
- Setup a Dummy interface
sudo lsmod | grep dummy
sudo modprobe dummy
sudo lsmod | grep dummy
sudo ip link add eth10 type dummy
ip link show eth10
- Setup a Dummy interface
Penetration Testing Box
We will install avoid the bloat that is kali and install a custom linux with a few useful tools.
Installing
To be continued….