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

网络截获/分析

开发平台:

C/C++

  1. /*
  2.     ettercap -- dissector MySQL
  3.     Copyright (C) 2001  ALoR <alor@users.sourceforge.net>, NaGA <crwm@freemail.it>
  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 "include/ec_main.h"
  17. #include <string.h>
  18. #include <stdio.h>
  19. #include <stdlib.h>
  20. #include <errno.h>
  21. #include "include/ec_dissector.h"
  22. #include "include/ec_decodedata.h"
  23. #include "include/ec_inet_structures.h"
  24. #include "include/ec_error.h"
  25. #ifdef DEBUG
  26.    #include "include/ec_debug.h"
  27. #endif
  28. // protos
  29. FUNC_DISSECTOR(Dissector_mysql);
  30. // --------------------
  31. FUNC_DISSECTOR(Dissector_mysql)
  32. {
  33.    TCP_header *tcp;
  34.    u_char *payload;
  35.    u_char collector[MAX_DATA];
  36.    char seed[8];
  37.    ONLY_CONNECTION;
  38.    tcp = (TCP_header *) data;
  39.    if (data_to_ettercap->datalen == 0) return 0;      // no data...
  40.    payload = (char *)((int)tcp + tcp->doff * 4);
  41.    memset(collector, 0, MAX_DATA);
  42.    memcpy(collector, payload, data_to_ettercap->datalen);
  43.    if (ntohs(tcp->source) == 3306)            // server messages... collect the random seed
  44.    {
  45.       int i = 5;  // skip first five byte and search for 000 padding
  46.       while(collector[i] != collector[i-1] != collector[i-2] != 0)
  47.          i++;
  48.       strncpy(seed, collector + i + 1, 8);
  49. //      #ifdef DEBUG
  50. //       printf("nserver:n%sn", Decodedata_GetHexData(payload, data_to_ettercap->datalen, 80));
  51. //       Debug_msg("tDissector_mysql - seed - [ %s ]", seed);
  52. //      #endif
  53.       sprintf(data_to_ettercap->info, "Encrypted (one way) seed: %s  pass: ", seed);
  54.    }
  55.    else                                      // client response crypt pass with seed
  56.    {
  57.       char user[25];
  58.       char pass[25];
  59.       snprintf(user, 25, "%s", collector+9);
  60.       snprintf(pass, 25, "%s", collector+9+strlen(user)+1);
  61.       strcat(data_to_ettercap->user, user);
  62.       strcat(data_to_ettercap->user, "n");
  63.       if (strlen(pass) != 0)
  64.          strcat(data_to_ettercap->pass, "n");
  65.       else  // NULL password oh yeah !!
  66.          strcat(data_to_ettercap->pass, "NO PASS yeah ! ;)n");
  67.       strcat(data_to_ettercap->info, pass);
  68.       strcat(data_to_ettercap->info, "n");
  69.       sprintf(data_to_ettercap->type, "MySQL");
  70. //      #ifdef DEBUG
  71. //       printf("nclient:n%sn", Decodedata_GetHexData(payload, data_to_ettercap->datalen, 80));
  72. //         Debug_msg("tDissector_mysql - user - [%s]", user);
  73. //         Debug_msg("tDissector_mysql - pass - [%s]", pass);
  74. //      #endif
  75.    }
  76.    return 0;
  77. }
  78. /* EOF */