File: SIPdump.c

package info (click to toggle)
sipcrack 0.2-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 252 kB
  • sloc: ansic: 2,568; makefile: 53; sh: 1
file content (794 lines) | stat: -rw-r--r-- 20,178 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
/*
 * Copyright (C) 2007  Martin J. Muench <mjm@codito.de>
 *
 * SIP digest authentication login sniffer
 */

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <pcap.h>

#include "global.h"
#include "pcapstuff.h"
#include "wrap.h"
#include "debug.h"

#define SIP_LINE_LEN   1024 /* Maximum length of SIP protocol lines */
#define SIP_METHOD_LEN   32 /* Maximum length of SIP method string  */
#define MAX_SIP_CON     128 /* Maximum parallel SIP connections     */

/* Structure for full connection table */
typedef struct
{
  int       active;
  uint32_t  client_ip;
  uint16_t  client_port;
  uint32_t  server_ip;
  uint16_t  server_port;
  char      method[SIP_METHOD_LEN];
  char      buffer[SIP_LINE_LEN];
} sip_conn_t;

/* Basic connection table */
typedef struct
{
  uint32_t  client_ip;
  uint16_t  client_port;
  uint32_t  server_ip;
  uint16_t  server_port;
} conn_t;

/* Function declarations */
static void sniff_logins(unsigned char *, const struct pcap_pkthdr *, const unsigned char *);
static void parse_payload(const conn_t *, unsigned char *, size_t);
static int  parse_sip_proto(char *, size_t, unsigned char *, size_t);
static int  find_sip_client_proto(unsigned char *, size_t);
static void manual_mode();
static void usage(const char *);
static void parse_n_write_login_data(uint32_t, uint32_t, const char *, const char *);

/* Globals */
static char        *dump_file=NULL; /* dump file             */
static unsigned int num_logins=0;   /* sniffed login counter */
int                 opterr = 0;     /* shutup getopt() */


/*
 * sipdump main
 */

int main(int argc, char *argv[])
{
  char        *dev=NULL, *pcap_file=NULL, *filter=DEFAULT_PCAP_FILTER;
  char        errbuf[PCAP_ERRBUF_SIZE];
  int         c, manual=0, retval=0;
  pcap_t      *handle=NULL;
  bpf_u_int32 mask, net;
  struct bpf_program fp;

  memset(&fp, 0, sizeof(struct bpf_program));

  printf("\nSIPdump %s \n"  \
         "---------------------------------------\n\n", VERSION);

  /* Parse command line */

  while((c = getopt(argc, argv, "i:mp:f:")) != -1) {
    switch(c) {
    case 'i':
      dev = (char *)Malloc(strlen(optarg)+1);
      strcpy(dev, optarg);
      break;
    case 'f':
      filter = (char *)Malloc(strlen(optarg)+1);
      strcpy(filter, optarg);
      break;
    case 'm':
      manual = 1;
      break;
    case 'p':
      pcap_file = (char *)Malloc(strlen(optarg)+1);
      strcpy(pcap_file, optarg);
      break;
    default:
      usage("Invalid arguments");
    }
  }

  /* Check if both modes set */

  if(pcap_file != NULL && dev != NULL)
    usage("Specify either interface or pcap file");

  /* Get dump file */

  argv += optind;
  argc -= optind;

  if(argc != 1) {
    SAFE_DELETE(pcap_file);
    SAFE_DELETE(dev);
    usage("You need to specify dump file");
  }

  dump_file = (char *)Malloc(strlen(argv[0])+1);
  strcpy(dump_file, argv[0]);

  /* Check for manual mode */

  if(manual) {
    manual_mode();
    goto cleanup;
  }

  /* Open pcap stream */

  if(pcap_file != NULL) {

    printf("* Using pcap file '%s' for sniffing\n", pcap_file);

    handle = pcap_open_offline(pcap_file, errbuf);

    if (handle == NULL) {
      fprintf(stderr, "* Cannot open %s: %s\n", pcap_file ? pcap_file : dev, errbuf);
      retval=EXIT_FAILURE;
      goto cleanup;
    }

  }
  else {

    /* For live capture, euid0 is neeed */

    if(geteuid() != 0) {
      fprintf(stderr, "* You need to have root privileges to run live capture\n");
      retval=EXIT_FAILURE;
      goto cleanup;
    }
  
    /* Get interface if not specified on command line */
  
    if(dev == NULL) {
      dev = pcap_lookupdev(errbuf);
      if (dev == NULL) {
	fprintf(stderr, "* Couldn't find default device: %s\n", errbuf);
	retval=EXIT_FAILURE;
	goto cleanup;
      }
    }

    printf("* Using dev '%s' for sniffing\n", dev);
    
    /* Get network number and mask associated with capture device */

    if(pcap_lookupnet(dev, &net, &mask, errbuf) == -1) {
      fprintf(stderr, "* Couldn't get netmask for device %s: %s\n", dev, errbuf);
      net = 0;
      mask = 0;
    }
  
    /* Open capture device */

    handle = pcap_open_live(dev, SNAP_LEN, 1, 1000, errbuf);
    if(handle == NULL) {
      fprintf(stderr, "* Cannot open device %s: %s\n", dev, errbuf);
      retval=EXIT_FAILURE;
      goto cleanup;
    }

    /* make sure we're capturing on an Ethernet device [2] */

    if(pcap_datalink(handle) != DLT_EN10MB) {
      fprintf(stderr, "* Invalid device '%s' (non ethernet)\n", dev);
      retval=EXIT_FAILURE;
      goto cleanup;
    }

  } 

  /* Compile the sniffer filter */

  if(pcap_compile(handle, &fp, filter, 0, net) == -1) {
    fprintf(stderr, "* Invalid packet filter: %s\n", pcap_geterr(handle));
    retval=EXIT_FAILURE;
    goto cleanup;
  }

  /* Apply the compiled filter */

  if(pcap_setfilter(handle, &fp) == -1) {
    fprintf(stderr, "* Installing packet filter failed: %s\n", pcap_geterr(handle));
    retval=EXIT_FAILURE;
    goto cleanup;
  }

  /* Run main sniffing function */

  printf("* Starting to sniff with packet filter '%s'\n\n", filter);

  pcap_loop(handle, -1, sniff_logins, NULL);

  printf("\n* Exiting, sniffed %u logins\n", num_logins);

  /* Cleanup and exit */

 cleanup:

  pcap_freecode(&fp);

  if(handle)
    pcap_close(handle);

  SAFE_DELETE(dump_file);
  SAFE_DELETE(dev);
  SAFE_DELETE(pcap_file);
  if(strncmp(DEFAULT_PCAP_FILTER, filter, strlen(DEFAULT_PCAP_FILTER)))
    SAFE_DELETE(filter);

  exit(retval);
}


/*
 * Parse payload and search for SIP connections
 */

static void parse_payload(const conn_t *connection, 
			  unsigned char *payload, 
			  size_t payload_len)
{
  static sip_conn_t conn_table[MAX_SIP_CON];
  static int first=1, replace_entry=0;
  int    i, ret, recorded=0;
  char   buffer[SIP_LINE_LEN];
  char   *payload_buffer=NULL;
  size_t payload_buffer_len=0;

  /* Clear connection table on first call */

  if(first) {
    memset(&conn_table, 0, sizeof(sip_conn_t) * MAX_SIP_CON);
    first=0;
  }
  
  /* Return on empty payload */

  if (payload_len <= 0)
    return;

  /* Ignore packet if it contains binary data  */

  if(is_binary(payload, payload_len))
    return;


  /* 
   * Check if this is a recorded connection where Authorization was 
   * not found yet
   */

  for(i=0; i < MAX_SIP_CON; i++) {

    /* Known connection, check data */

    if(conn_table[i].active &&
       connection->server_ip == conn_table[i].server_ip &&
       connection->client_ip == conn_table[i].client_ip && 
       connection->server_port == conn_table[i].server_port &&
       connection->client_port == conn_table[i].client_port) 
    {
      struct in_addr cli, srv;
      cli.s_addr = connection->client_ip;
      srv.s_addr = connection->server_ip;
      debug(("New traffic on monitored connection %d:", i));
      debug(("Client: %s", inet_ntoa(cli)));
      debug(("Server: %s", inet_ntoa(srv)));

      /* Set recorded flag to prevent new parsing*/

      recorded=1;

      /* No old data recorded (no unterminated lines in last packet) */

      if(conn_table[i].buffer[0] == 0x00) {

	/* Parse payload and check if we've got digest auth */

	ret = parse_sip_proto(buffer, sizeof(buffer), payload, payload_len);

      }

      /* Already recorded SIP data, append new payload to buffer and recheck */

      else {

        /* Append new payload to existing buffer*/

	payload_buffer_len = payload_len + strlen(conn_table[i].buffer) + 1;
	payload_buffer     = (char *)Malloc(payload_buffer_len);

	strncpy(payload_buffer, conn_table[i].buffer, payload_buffer_len - 1);
	strncat(payload_buffer, 
		(char *)payload, 
		payload_buffer_len - strlen(payload_buffer) - 1);

	/* Parse buffer (saved buffer + packet payload) */

        ret = parse_sip_proto(buffer, 
			      sizeof(buffer), 
			      (unsigned char *)payload_buffer, 
			      payload_buffer_len);

	/* Free payload buffer */

	free(payload_buffer);

      }

      /* Error or no digets found, removing connection from table */

      if(ret < 0) {
	memset(&conn_table[i], 0, sizeof(sip_conn_t));
	return;
      }

      /* Found challenge response */

      if(ret) {

	/* Extract all needed values and write to dump file */

	parse_n_write_login_data(conn_table[i].server_ip, 
				 conn_table[i].client_ip, 
				 conn_table[i].method, 
				 buffer);

	/* Remove entry from connection table */

        memset(&conn_table[i], 0, sizeof(sip_conn_t));

      }

      /* Keep non-line-terminated buffer, new data will be appended */

      else if(!ret) {

	if(buffer[0] != 0x00)
	  strncpy(conn_table[i].buffer, buffer, sizeof(conn_table[i].buffer) - 1);

      }

      /* Break lookup in connection table */
      break;
    }

  } /* for(i=0; i < MAX_SIP_CON; i++) */


  /* Unrecorded connection */

  if(!recorded) {

    /* Check for SIP protocol */

    if(!find_sip_client_proto(payload, payload_len))
      return; 

    /* Parse payload and search for digest auth */

    ret = parse_sip_proto(buffer, sizeof(buffer), payload, payload_len);

    /* Ignore packet on error or no digest authentication found */

    if(ret < 0) {
      return;
    }

    /* Found challenge response */

    if(ret) {

      /* Get method from payload */
      char method[SIP_METHOD_LEN];
      extract_method(method, (char *)payload, sizeof(method));

      /* Extract all needed values and write to dump file */

      parse_n_write_login_data(connection->server_ip, 
			       connection->client_ip, 
			       method, 
			       buffer);

    }

    /* 
     * Add to connection table for further checks 
     * (digest authentification line still missing)
     */

    else if(!ret) {
      struct in_addr cli, srv;
      cli.s_addr = connection->client_ip;
      srv.s_addr = connection->server_ip;
      debug(("Adding connection to list:"));
      debug(("Client: %s:%d ", inet_ntoa(cli), connection->client_port));
      debug(("Server: %s:%d ", inet_ntoa(srv), connection->server_port));

      /* Find free entry in connection table */

      for(i=0; i < MAX_SIP_CON; i++) {
        if(!conn_table[i].active) {
	  recorded=1;
	  break;
	}
      }

      /* If no free entry found, replace another one */

      if(!recorded) {
	debug(("Connection table full, replacing %d", replace_entry));
	i = replace_entry;

	if(replace_entry == MAX_SIP_CON - 1)
	  replace_entry = 0;
	else
	  replace_entry++;
      }

      /* Connection information */

      conn_table[i].active      = 1;
      conn_table[i].client_ip   = connection->client_ip;
      conn_table[i].server_ip   = connection->server_ip;
      conn_table[i].client_port = connection->client_port;
      conn_table[i].server_port = connection->server_port;

      /* Copy method */

      extract_method(conn_table[i].method, 
		     (char *)payload, 
		     sizeof(conn_table[i].method));
      debug(("Method: %s", conn_table[i].method));

      /* Keep non-line-terminated data (new data will be appended) */

      if(buffer[0] != '\0') {
	strncpy(conn_table[i].buffer, buffer, SIP_LINE_LEN);
	debug(("Saving buffer '%s'", buffer));
      }

    }

  } /* if(!recorded) */
  
  return;
}

/*
 * Initial check for received packets
 */

static void sniff_logins(unsigned char *args, 
			 const struct pcap_pkthdr *header, 
			 const unsigned char *packet)
{
  const struct ethernet_header *ethernet;
  const struct ip_header *ip;
  const struct tcp_header *tcp;
  const struct udp_header *udp;
  unsigned char *payload;
  conn_t connection;
  size_t size_ip=0, size_proto=0, size_payload=0;

  /* Get ethernet header */

  ethernet = (struct ethernet_header *)(packet);

  /* Get IP header */

  ip = (struct ip_header *)(packet + SIZE_ETHERNET);
  size_ip = IP_HL(ip)*4;
  if (size_ip < 20) {
    debug(("Got packet with invalid IP header length (%d bytes), ignoring...", size_ip));
    return;
  }

  /* Assign IP's */

  connection.server_ip = ip->ip_src.s_addr;
  connection.client_ip = ip->ip_dst.s_addr;

  /* Check proto and get source and destination port */

  switch(ip->ip_p) 
  {
  case IPPROTO_TCP:
    tcp = (struct tcp_header *)(packet + SIZE_ETHERNET + size_ip);
    size_proto = TH_OFF(tcp)*4;
    if (size_proto < 20) {
      debug(("Got packet with invalid TCP header length (%d bytes), ignoring...", size_proto));
      return;
    }
    connection.server_port = tcp->th_sport;
    connection.client_port = tcp->th_dport;
    break;
  case IPPROTO_UDP:
    udp = (struct udp_header *)(packet + SIZE_ETHERNET + size_ip);
    size_proto = sizeof(struct udp_header);
    connection.server_port = udp->uh_sport;
    connection.client_port = udp->uh_dport;
    break;
  default: 
    return;
  }

  /* Extract payload from packet */

  payload = (unsigned char *)(packet + SIZE_ETHERNET + size_ip + size_proto);
  size_payload = ntohs(ip->ip_len) - (size_ip + size_proto);
  payload[size_payload] = 0x00;

  /* If we have a payload send to payload and connection information to parser */

  if(size_payload > 0) {
    parse_payload(&connection, payload, size_payload);
  }
  
  return;
}

/*
 * Extract all needed SIP parameters from buffer
 */

static int parse_sip_proto(char *out, 
			   size_t out_len, 
			   unsigned char *buffer, 
			   size_t buffer_len)
{
  char **lines;
  int  num_lines, i, found=0, error=0;

  /* Clear output buffer */

  memset(out, 0, out_len);

  /* Iterate through sip data (line by line) */
  lines = stringtoarray((char *)buffer, '\n', &num_lines);

  for(i = 0 ; i < num_lines - 1; i++) {

    /* We are only interested in lines beginning with these strings */
    if((!strncmp(lines[i], "Proxy-Authorization:", strlen("Proxy-Authorization:"))  ||
	!strncmp(lines[i], "WWW-Authenticate:",    strlen("WWW-Authenticate:"))     ||
	!strncmp(lines[i], "Authorization:",       strlen("Authorization:"))) &&
       !found && !error) 
    {

      /* found the digest auth line, copy to output buffer */

      if(out_len - 1 < strlen(lines[i])) {
	debug(("Buffer too small for line, ignoring..."));
	error=1;
      }

      strncpy(out, lines[i], out_len - 1);

      found = 1;

    }

    /* free obsolete lines */

    free(lines[i]);
  }

  /* Error or regular end of SIP header and no auth found */

  if(error || (!found && lines[num_lines-1][0] == 0x00)) {
    free(lines[num_lines - 1]);
    return -1;
  }

  /* Challenge response sniffed */

  if(found) {
    free(lines[num_lines - 1]);
    return 1;  
  }

  /* Nothing found so far, recording remaining buffer */

  if(out_len - 1 < strlen(lines[num_lines - 1])) {
    debug(("Buffer too small for line, ignoring..."));
    free(lines[num_lines - 1]); 
    return -1;
  }

  strncpy(out, lines[num_lines - 1], out_len - 1);

  /* Free last line */
  free(lines[num_lines - 1]);

  return 0;
}

/* 
 * Check if given buffer is a SIP header with methods
 * that might require digest authentication
 */

static int find_sip_client_proto(unsigned char *buffer, size_t len)
{
  int  i;
  char c=0;

  /* Ignore all other SIP requests as they won't be challenged */

  if(strncmp((char *)buffer, "REGISTER ", 9) && 
     strncmp((char *)buffer, "MESSAGE " , 8) &&
     strncmp((char *)buffer, "OPTIONS " , 8) &&
     strncmp((char *)buffer, "INVITE "  , 7) &&
     strncmp((char *)buffer, "BYE "     , 4))
    return 0;

  /* Remove replace \r\n with \0 for strstr check */

  for(i = 0; i < len; i++) {
    if(buffer[i] == 0x0a || buffer[i] == 0x0d) { 
      c = buffer[i];
      buffer[i] = 0x00;
      break;
    }
  }

  /* Check for valid SIP request and restore buffer */

  if(strstr((char *)buffer, " sip:") && strstr((char *)buffer, " SIP/")) {
    buffer[i] = c;
    return 1;
  }

  return 0;
}


/*
 * Manual mode to insert a login into dump file
 */

static void manual_mode() 
{
  login_t login;

  memset(&login, 0, sizeof(login));

  /* Get user input */

  printf("* Enter login information manually:\n\n");
  get_string_input(login.server, sizeof(login.server), "* Enter server IP  : ");
  get_string_input(login.client, sizeof(login.client), "* Enter client IP  : ");
  get_string_input(login.user,   sizeof(login.user),   "* Enter username   : ");
  get_string_input(login.realm,  sizeof(login.realm),  "* Enter realm      : ");
  get_string_input(login.method, sizeof(login.method), "* Enter Method     : ");
  get_string_input(login.uri,    sizeof(login.uri),    "* Enter URI        : ");
  get_string_input(login.nonce,  sizeof(login.nonce),  "* Enter nonce      : ");
  get_string_input(login.qop,    sizeof(login.qop),    "* Enter qop        : ");

  /* Read cnonce and cnonce_count only if qop is set */

  if(strlen(login.qop)) {
    get_string_input(login.cnonce,      sizeof(login.cnonce),      "* Enter cnonce     : ");
    get_string_input(login.nonce_count, sizeof(login.nonce_count), "* Enter nonce_count: ");
  }

  /* Get algorithm */

  get_string_input(login.algorithm, sizeof(login.algorithm), "* Enter algorithm   : ");
  Toupper(login.algorithm, strlen(login.algorithm));

  /* Get response hash */

  get_string_input(login.hash, sizeof(login.hash), "* Enter response   : ");

  /* Write to file */

  write_login_data(&login, dump_file);

  return;
}

/* 
 * Show usage and exit
 */

static void usage(const char *err_msg)
{
  printf("Usage: sipdump [OPTIONS] <dump file>                           \n\n" \
         "       <dump file>    = file where captured logins will be written to\n\n" \
         "       Options:                                                  \n" \
         "       -i <interface> = interface to listen on                   \n" \
	 "       -p <file>      = use pcap data file                       \n" \
         "       -m             = enter login data manually                \n" \
         "       -f \"<filter>\"  = set libpcap filter                       \n" \
         "\n* %s\n", err_msg);
  exit(EXIT_FAILURE);
}


/* 
 * Parse all SIP digest auth related values from buffer and write to dump file 
 */

static void parse_n_write_login_data(uint32_t server, 
				     uint32_t client, 
				     const char *method, 
				     const char *buffer)
{
  login_t        login_data;
  struct in_addr cli, srv;
 
  memset(&login_data, 0, sizeof(login_data));

  /* Copy server and client IP */

  cli.s_addr = client;
  srv.s_addr = server;
  strncpy(login_data.server, inet_ntoa(srv), sizeof(login_data.server) - 1);
  strncpy(login_data.client, inet_ntoa(cli), sizeof(login_data.client) - 1);

  /* Copy method */

  strncpy(login_data.method, method, sizeof(login_data.method) - 1);

  /* Extract Authorization options from buffer */

  if(find_value("username=", buffer, login_data.user,  sizeof(login_data.user))  ||
     find_value("realm=",    buffer, login_data.realm, sizeof(login_data.realm)) ||
     find_value("uri=",      buffer, login_data.uri,   sizeof(login_data.uri))   ||
     find_value("nonce=",    buffer, login_data.nonce, sizeof(login_data.nonce)) ||
     find_value("response=", buffer, login_data.hash,  sizeof(login_data.hash))  )
    {
      debug(("Couldn't parse buffer (ignoring data):\n---------\n%s\n---------", buffer));
      return;
    }

  /* Check for qop */

  if(!find_value("qop=", buffer, login_data.qop, sizeof(login_data.qop))) {

    /* get cnonce and nonce_count */

    if(find_value("cnonce=", buffer, login_data.cnonce,      sizeof(login_data.cnonce))  ||
       find_value("nc=",     buffer, login_data.nonce_count, sizeof(login_data.nonce_count))) {
      debug(("Couldn't parse cnonce/nonce_count (ignoring data):\n---------\n%s\n---------", buffer));
      return;
    }

  }

  /* Get algorithm or set MD5 */

  if(find_value("algorithm=", buffer, login_data.algorithm, sizeof(login_data.algorithm)))
      strncpy(login_data.algorithm, "MD5", sizeof(login_data.algorithm));
  else
    Toupper(login_data.algorithm, strlen(login_data.algorithm));

  /* Write to dump file */

  write_login_data(&login_data, dump_file);

  printf("* Dumped login from %s -> %s (User: '%s')\n", 
	 login_data.client, login_data.server, login_data.user);

  num_logins++;

  return;
}