-
Notifications
You must be signed in to change notification settings - Fork 83
/
decode_socks.c
61 lines (44 loc) · 1020 Bytes
/
decode_socks.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
/*
* decode_socks.c
*
* NEC SOCKS.
*
* Copyright (c) 2000 Dug Song <[email protected]>
*
* $Id: decode_socks.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 "decode.h"
int
decode_socks(u_char *buf, int len, u_char *obuf, int olen)
{
u_char *p;
int i, n;
p = buf;
if (len < 4 || *p++ != 5) /* SOCKS version */
return (0);
if ((n = *p++) > len - 5) /* nmethods */
return (0);
for (i = 0; i < n; i++) /* USERNAME/PASSWORD method? */
if (p[i] == 2) break;
if (i == n) return (0);
p += n;
if (*p++ != 1) return (0); /* USERNAME/PASSWORD version */
n = *p++;
if (n > len - (p - buf))
return (0);
memmove(p - 1, p, n); p[n - 1] = '\0';
snprintf(obuf, olen, "%s ", p - 1);
p += n;
n = *p++;
if (n > len - (p - buf))
return (0);
memmove(p - 1, p, n); p[n - 1] = '\0';
strlcat(obuf, p - 1, olen);
strlcat(obuf, "\n", olen);
return (strlen(obuf));
}