1#!/usr/bin/bash 2# Author V.Varbanovski @nu11secur1ty 3# 4# 5# Prepare apache 6cd /etc/ 7 echo "Type you IP" 8 read IP 9 echo "Type your fake domain" 10 read fuck 11 cat >> hosts << EOF 12$IP $fuck 13EOF 14 exit 0; 15 16