forked from robertdavidgraham/masscan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproto-imap4.c
200 lines (182 loc) · 5.99 KB
/
proto-imap4.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
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
/*
imap4 banner checker
*/
#include "proto-imap4.h"
#include "proto-banner1.h"
#include "unusedparm.h"
#include "masscan-app.h"
#include "proto-interactive.h"
#include "proto-ssl.h"
#include <ctype.h>
#include <string.h>
/***************************************************************************
***************************************************************************/
static void
imap4_parse( const struct Banner1 *banner1,
void *banner1_private,
struct ProtocolState *pstate,
const unsigned char *px, size_t length,
struct BannerOutput *banout,
struct InteractiveData *more)
{
unsigned state = pstate->state;
unsigned i;
UNUSEDPARM(banner1_private);
UNUSEDPARM(banner1);
for (i=0; i<length; i++) {
if (px[i] == '\r')
continue;
switch (state) {
case 0:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '*')
state++;
else
state = STATE_DONE;
break;
case 1:
if (px[i] == ' ') {
banout_append_char(banout, PROTO_IMAP4, px[i]);
continue;
} else
state++;
/* fall through */
case 2:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == 'O')
state++;
else
state = STATE_DONE;
break;
case 3:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == 'K')
state++;
else
state = STATE_DONE;
break;
case 4:
if (px[i] == ' ') {
banout_append_char(banout, PROTO_IMAP4, px[i]);
state++;
break;
} else if (px[i] != '\n') {
banout_append_char(banout, PROTO_IMAP4, px[i]);
/* no transition */
break;
} else {
state++;
/* fall through */
}
case 5:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '\n') {
tcp_transmit(more, "a001 CAPABILITY\r\n", 17);
state = 100;
}
break;
case 100:
case 300:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '*')
state += 100;
else if (px[i] == 'a')
state++;
else
state = STATE_DONE;
break;
case 101:
case 301:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '0')
state++;
else
state = STATE_DONE;
break;
case 102:
case 302:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '0')
state++;
else
state = STATE_DONE;
break;
case 103:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '1')
state++;
else
state = STATE_DONE;
break;
case 303:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '2')
state++;
else
state = STATE_DONE;
break;
case 104:
case 304:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == ' ')
state++;
else
state = STATE_DONE;
break;
case 105:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '\n') {
tcp_transmit(more, "a002 STARTTLS\r\n", 15);
state = 300;
}
break;
case 200:
case 400:
banout_append_char(banout, PROTO_IMAP4, px[i]);
if (px[i] == '\n')
state -= 100;
break;
case 305:
if (px[i] == '\n') {
/* change the state here to SSL */
unsigned port = pstate->port;
memset(pstate, 0, sizeof(*pstate));
pstate->app_proto = PROTO_SSL3;
pstate->is_sent_sslhello = 1;
pstate->port = (unsigned short)port;
state = 0;
more->payload = banner_ssl.hello;
more->length = (unsigned)banner_ssl.hello_length;
break;
}
break;
default:
i = (unsigned)length;
break;
}
}
pstate->state = state;
}
/***************************************************************************
***************************************************************************/
static void *
imap4_init(struct Banner1 *banner1)
{
UNUSEDPARM(banner1);
return 0;
}
/***************************************************************************
***************************************************************************/
static int
imap4_selftest(void)
{
return 0;
}
/***************************************************************************
***************************************************************************/
const struct ProtocolParserStream banner_imap4 = {
"imap4", 21, 0, 0, 0,
imap4_selftest,
imap4_init,
imap4_parse,
};