Black Hat

DNS Spoofing – Performing DNS Spoofing

DNS Spoofing: DNS is an important service for just about any network today. Some networks, such as those that use Active Directory, cannot even function without DNS being present in the environment.

With these points in mind, we need to look at an attack, the attacking party modifies the DNS server to change the flow of traffic to go from their normal host-to-IP-address mapping to addresses that they desire instead.

In some cases, the website that has traffic redirected to them may be designed to spread malware.

 

Performing DNS Spoofing

In this exercise you will perform a DNS spoofing attack to redirect traffic to a website you control instead of then normal website. To perform this exercise you will need to use Kali Linux 2.0.

 

  1. In Kali choose dnsspoof from Sniffing menu.

 

  1. At the command prompt enter the following command: dnsspoof –i <interface>  -f  <hostfile>.

    In this command –i tells dnsspoof which network interface to listen on and –f tells dnsspoof which host names to respond to. For example, -f tells dnsspoof which addresses to use to respond to queries configured in the hosts file.

 

  1. Use a web browser on another machine on the network, such as Windows system, to browse to a site such as Zelda.com.

 

  1. Flush DNS on the Windows system the ipconfig command with the following syntax:

    ipconfig / flushdns

 

  1. On the Kali system set the network card to run in promiscuous mode using ifconfig like so:

    ifconfig <interface nam>  promisc

 

  1. Terminate the connection to Zelda.com on the Windows system by entering the following on the Kali system:

    Tcpkill -9 host [www.zelda.com]

 

  1. In Kali open the hosts file located in the /usr/local folder.

 

  1. Open the hosts file in a text editor.

 

  1. Add a line for zelda.com to the file like so:

    192.168.1.1 www.zelda.com

 

  1. Save the hosts file.

 

  1. Turn off promiscuous mode on the Kali system by entering the following:

    Ifconfig <interface name>  -promisc

 

  1. Create a new Zelda web page.

 

  1. Create a website that the user will be directed to when they type Zelda.com in the URL of their browser. Start dnsspoof and direct users to the new address for Zelda.com.

 

Now when dnsspoof is running, any attempt to access Zelda.com will redirect users to the new location.

 

Related Articles

Leave a Reply

Back to top button