summaryrefslogtreecommitdiff
path: root/plugins/winordinals/cache_wsock32.c
blob: d3b98cf2b3c49b2cad04c71044f5699302d4c9af (plain)
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

/* Chrysalide - Outil d'analyse de fichiers binaires
 * cache_wsock32.c - fourniture des ordinaux du fichier wsock32.dll
 *
 * Copyright (C) 2021 Cyrille Bagard
 *
 *  This file is part of Chrysalide.
 *
 *  Chrysalide is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  Chrysalide is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with Chrysalide.  If not, see <http://www.gnu.org/licenses/>.
 */


#include "cache_wsock32.h"


#include <stddef.h>



/**
 * Empreintes du fichier wsock32.dll :
 *
 *   - MD5 : 2afbb671a865f43c0476d685dc77b4df
 *   - SHA1 : 233125ad8fd18a65d5939b80160ce3e5c19c0184
 *   - SHA256 : 0c310f70350ba9801f0421c2da2595beaa3fef55d43d6928d53a674dfcd6e9fb
 */


/* Liste des ordinaux référencés */
static const char *_wsock32_ordinals[1143] = {
    [1] = "accept",
    [2] = "bind",
    [3] = "closesocket",
    [4] = "connect",
    [5] = "getpeername",
    [6] = "getsockname",
    [7] = "getsockopt",
    [8] = "htonl",
    [9] = "htons",
    [10] = "inet_addr",
    [11] = "inet_ntoa",
    [12] = "ioctlsocket",
    [13] = "listen",
    [14] = "ntohl",
    [15] = "ntohs",
    [16] = "recv",
    [17] = "recvfrom",
    [18] = "select",
    [19] = "send",
    [20] = "sendto",
    [21] = "setsockopt",
    [22] = "shutdown",
    [23] = "socket",
    [51] = "gethostbyaddr",
    [52] = "gethostbyname",
    [53] = "getprotobyname",
    [54] = "getprotobynumber",
    [55] = "getservbyname",
    [56] = "getservbyport",
    [101] = "WSAAsyncSelect",
    [102] = "WSAAsyncGetHostByAddr",
    [103] = "WSAAsyncGetHostByName",
    [104] = "WSAAsyncGetProtoByNumber",
    [105] = "WSAAsyncGetProtoByName",
    [106] = "WSAAsyncGetServByPort",
    [107] = "WSAAsyncGetServByName",
    [108] = "WSACancelAsyncRequest",
    [109] = "WSASetBlockingHook",
    [110] = "WSAUnhookBlockingHook",
    [111] = "WSAGetLastError",
    [112] = "WSASetLastError",
    [113] = "WSACancelBlockingCall",
    [114] = "WSAIsBlocking",
    [115] = "WSAStartup",
    [1100] = "inet_network",
    [1101] = "getnetbyname",
    [1102] = "rcmd",
    [1103] = "rexec",
    [1104] = "rresvport",
    [1105] = "sethostname",
    [1106] = "dn_expand",
    [1107] = "WSARecvEx",
    [1108] = "s_perror",
    [1109] = "GetAddressByNameA",
    [1110] = "GetAddressByNameW",
    [1111] = "EnumProtocolsA",
    [1112] = "EnumProtocolsW",
    [1113] = "GetTypeByNameA",
    [1114] = "GetTypeByNameW",
    [1115] = "GetNameByTypeA",
    [1116] = "GetNameByTypeW",
    [1117] = "SetServiceA",
    [1118] = "SetServiceW",
    [1119] = "GetServiceA",
    [1140] = "TransmitFile",
    [1141] = "AcceptEx",
    [1142] = "GetAcceptExSockaddrs",
};



/******************************************************************************
*                                                                             *
*  Paramètres  : ordinal = valeur ordinale à considérer.                      *
*                                                                             *
*  Description : Fournit le nom du symbole associé à un ordinal donné.        *
*                                                                             *
*  Retour      : Désignation du symbole trouvé ou NULL en cas d'échec.        *
*                                                                             *
*  Remarques   : -                                                            *
*                                                                             *
******************************************************************************/

const char *find_wsock32_name_for_ordinal(uint16_t ordinal)
{
    const char *result;                     /* Désignation à renvoyer      */

    if (ordinal >= 1143)
        result = NULL;

    else
        result = _wsock32_ordinals[ordinal];

    return result;

}