Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Include ordinals for wsock32.dll #405

Merged
merged 1 commit into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions ordlookup/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@
from . import oleaut32

"""
A small module for keeping a database of ordinal to symbol
mappings for DLLs which frequently get linked without symbolic
infoz.
A small module containing a database of ordinal to symbol mappings for DLLs
which frequently get linked without symbolic information.
"""

ords = {
b"ws2_32.dll": ws2_32.ord_names,
b"wsock32.dll": ws2_32.ord_names,
b"oleaut32.dll": oleaut32.ord_names,
b"ws2_32.dll": ws2_32.ord_names,
b"wsock32.dll": wsock32.ord_names,
}


Expand Down
77 changes: 77 additions & 0 deletions ordlookup/wsock32.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
ord_names = {
1: b"accept",
2: b"bind",
3: b"closesocket",
4: b"connect",
5: b"getpeername",
6: b"getsockname",
7: b"getsockopt",
8: b"htonl",
9: b"htons",
10: b"inet_addr",
11: b"inet_ntoa",
12: b"ioctlsocket",
13: b"listen",
14: b"ntohl",
15: b"ntohs",
16: b"recv",
17: b"recvfrom",
18: b"select",
19: b"send",
20: b"sendto",
21: b"setsockopt",
22: b"shutdown",
23: b"socket",
24: b"MigrateWinsockConfiguration",
51: b"gethostbyaddr",
52: b"gethostbyname",
53: b"getprotobyname",
54: b"getprotobynumber",
55: b"getservbyname",
56: b"getservbyport",
57: b"gethostname",
101: b"WSAAsyncSelect",
102: b"WSAAsyncGetHostByAddr",
103: b"WSAAsyncGetHostByName",
104: b"WSAAsyncGetProtoByNumber",
105: b"WSAAsyncGetProtoByName",
106: b"WSAAsyncGetServByPort",
107: b"WSAAsyncGetServByName",
108: b"WSACancelAsyncRequest",
109: b"WSASetBlockingHook",
110: b"WSAUnhookBlockingHook",
111: b"WSAGetLastError",
112: b"WSASetLastError",
113: b"WSACancelBlockingCall",
114: b"WSAIsBlocking",
115: b"WSAStartup",
116: b"WSACleanup",
151: b"__WSAFDIsSet",
500: b"WEP",
1000: b"WSApSetPostRoutine",
1100: b"inet_network",
1101: b"getnetbyname",
1102: b"rcmd",
1103: b"rexec",
1104: b"rresvport",
1105: b"sethostname",
1106: b"dn_expand",
1107: b"WSARecvEx",
1108: b"s_perror",
1109: b"GetAddressByNameA",
1110: b"GetAddressByNameW",
1111: b"EnumProtocolsA",
1112: b"EnumProtocolsW",
1113: b"GetTypeByNameA",
1114: b"GetTypeByNameW",
1115: b"GetNameByTypeA",
1116: b"GetNameByTypeW",
1117: b"SetServiceA",
1118: b"SetServiceW",
1119: b"GetServiceA",
1120: b"GetServiceW",
1130: b"NPLoadNameSpaces",
1140: b"TransmitFile",
1141: b"AcceptEx",
1142: b"GetAcceptExSockaddrs",
}
Loading