-
Notifications
You must be signed in to change notification settings - Fork 83
/
decode_pop.c
78 lines (65 loc) · 1.6 KB
/
decode_pop.c
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
/*
* decode_pop.c
*
* Post Office Protocol.
*
* Copyright (c) 2000 Dug Song <[email protected]>
*
* $Id: decode_pop.c,v 1.4 2001/03/15 08:33:02 dugsong Exp $
*/
#include "config.h"
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <strlcat.h>
#include "base64.h"
#include "options.h"
#include "decode.h"
int
decode_poppass(u_char *buf, int len, u_char *obuf, int olen)
{
char *p;
obuf[0] = '\0';
for (p = strtok(buf, "\r\n"); p != NULL; p = strtok(NULL, "\r\n")) {
if (strncasecmp(p, "user ", 5) == 0 ||
strncasecmp(p, "pass ", 5) == 0 ||
strncasecmp(p, "newpass ", 8) == 0) {
strlcat(obuf, p, olen);
strlcat(obuf, "\n", olen);
}
}
if (strip_lines(obuf, Opt_lines) < 3)
return (0);
return (strlen(obuf));
}
int
decode_pop(u_char *buf, int len, u_char *obuf, int olen)
{
char *p;
int i, j;
obuf[0] = '\0';
for (p = strtok(buf, "\r\n"); p != NULL; p = strtok(NULL, "\r\n")) {
if (strncasecmp(p, "AUTH PLAIN", 10) == 0 ||
strncasecmp(p, "AUTH LOGIN", 10) == 0) {
strlcat(obuf, p, olen);
strlcat(obuf, "\n", olen);
/* Decode SASL auth. */
for (i = 0; i < 2 && (p = strtok(NULL, "\r\n")); i++) {
strlcat(obuf, p, olen);
j = base64_pton(p, p, strlen(p));
p[j] = '\0';
strlcat(obuf, " [", olen);
strlcat(obuf, p, olen);
strlcat(obuf, "]\n", olen);
}
}
/* Save regular POP2, POP3 auth info. */
else if (strncasecmp(p, "USER ", 5) == 0 ||
strncasecmp(p, "PASS ", 5) == 0 ||
strncasecmp(p, "HELO ", 5) == 0) {
strlcat(obuf, p, olen);
strlcat(obuf, "\n", olen);
}
}
return (strlen(obuf));
}