pedump 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +38 -3
- data/VERSION +1 -1
- data/data/comp_id.txt +776 -0
- data/lib/pedump.rb +29 -5
- data/lib/pedump/cli.rb +6 -3
- data/lib/pedump/loader.rb +28 -6
- data/lib/pedump/loader/section.rb +5 -3
- data/lib/pedump/rich.rb +562 -0
- data/lib/pedump/te.rb +15 -4
- data/pedump.gemspec +7 -4
- data/rich.py +353 -0
- metadata +5 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23748b86fb8ea0471bd4805e7bafda25f5bb6279cf2acf28f6d05ac5913a33d2
|
4
|
+
data.tar.gz: 327d5c2e046a70d262a957ccc334d53adfc9ce6d55cba61c8b0efa4e3d70ef0c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ec5ef9e264bdcfb7d1b2c52be51d2c6fd5548fdd36a4f7e20570998740a5dfd624d546b82398326e339f42291e364d5dfdc156dfe348030a981bf071aee6722f
|
7
|
+
data.tar.gz: a557ebc6dd98b211ff3096bf09fb8d8c4742c7b1cf2db965eeac4f74e77361e22c133a231a946b59ac28925ffc1188e70b110534775b0968438fa93e42163a8d
|
data/Rakefile
CHANGED
@@ -74,17 +74,20 @@ namespace :test do
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
def check_file url,
|
77
|
+
def check_file url, params = {}
|
78
78
|
require 'digest/md5'
|
79
79
|
require 'open-uri'
|
80
80
|
|
81
|
+
params[:min_size] ||= 80_000
|
82
|
+
|
81
83
|
STDOUT.sync = true
|
84
|
+
prefix = params[:prefix]
|
82
85
|
fname = File.join 'data', (prefix ? "#{prefix}-" : '') + File.basename(url)
|
83
86
|
existing_md5 = File.exist?(fname) ? Digest::MD5.file(fname).hexdigest : ''
|
84
87
|
print "[.] fetching #{url} .. "
|
85
88
|
remote_data = open(url).read.force_encoding('cp1252').encode('utf-8')
|
86
89
|
puts "#{remote_data.size} bytes"
|
87
|
-
raise "too small remote data (#{remote_data.size})" if remote_data.size <
|
90
|
+
raise "too small remote data (#{remote_data.size})" if remote_data.size < params[:min_size]
|
88
91
|
remote_md5 = Digest::MD5.hexdigest(remote_data)
|
89
92
|
if remote_md5 == existing_md5
|
90
93
|
puts "[.] same as local"
|
@@ -95,13 +98,45 @@ def check_file url, prefix=nil
|
|
95
98
|
end
|
96
99
|
end
|
97
100
|
|
101
|
+
RICH_IDS_URL = "https://raw.githubusercontent.com/dishather/richprint/master/comp_id.txt"
|
102
|
+
|
103
|
+
namespace :rich do
|
104
|
+
desc "update rich comp_id db from net"
|
105
|
+
task :update do
|
106
|
+
check_file RICH_IDS_URL, :min_size => 30_000
|
107
|
+
end
|
108
|
+
|
109
|
+
desc "convert"
|
110
|
+
task :convert do
|
111
|
+
result = [
|
112
|
+
"class PEdump",
|
113
|
+
" # data from #{RICH_IDS_URL}",
|
114
|
+
" RICH_IDS = {"
|
115
|
+
]
|
116
|
+
n = 0
|
117
|
+
t0 = Time.now
|
118
|
+
File.readlines(File.join("data", File.basename(RICH_IDS_URL))).each do |line|
|
119
|
+
line.strip!
|
120
|
+
next if line.empty? || line[0] == '#'
|
121
|
+
comp_id, desc = line.split(nil, 2)
|
122
|
+
raise unless comp_id =~ /\A[0-9a-fA-F]+\Z/
|
123
|
+
result << " 0x#{comp_id} => #{desc.inspect},"
|
124
|
+
n += 1
|
125
|
+
end
|
126
|
+
result << " }"
|
127
|
+
result << "end"
|
128
|
+
printf "[.] parsed %d definitions in %6.3fs\n", n, Time.now-t0
|
129
|
+
File.write("lib/pedump/rich.rb", result.join("\n") + "\n")
|
130
|
+
end
|
131
|
+
end
|
132
|
+
|
98
133
|
namespace :sigs do
|
99
134
|
desc "update packers db from net"
|
100
135
|
task :update do
|
101
136
|
require './lib/pedump/packer'
|
102
137
|
check_file "http://research.pandasecurity.com/blogs/images/userdb.txt"
|
103
138
|
check_file "http://fuu.googlecode.com/svn/trunk/src/x86/Tools/Signaturesdb/signatures.txt"
|
104
|
-
check_file "http://handlers.sans.edu/jclausing/userdb.txt", "jc"
|
139
|
+
check_file "http://handlers.sans.edu/jclausing/userdb.txt", :prefix => "jc"
|
105
140
|
end
|
106
141
|
|
107
142
|
desc "convert txt2bin"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.6.
|
1
|
+
0.6.1
|
data/data/comp_id.txt
ADDED
@@ -0,0 +1,776 @@
|
|
1
|
+
# Format is:
|
2
|
+
# <comp.id> Description
|
3
|
+
|
4
|
+
# I use the following extra marks in description:
|
5
|
+
# [ C ] - obj file produced by C compiler
|
6
|
+
# [C++] - obj file produced by C++ compiler
|
7
|
+
# [RES] - obj file produced by CVTRES converter
|
8
|
+
# [IMP] - DLL import record in library file
|
9
|
+
# [EXP] - DLL export record in library file
|
10
|
+
# [ASM] - obj file produced by assembler
|
11
|
+
# (*) at the end marks entries that are interpolated/calculated.
|
12
|
+
|
13
|
+
# Objects without @comp.id are collected under this record
|
14
|
+
00010000 [---] Unmarked objects
|
15
|
+
00000000 [---] Unmarked objects (old)
|
16
|
+
|
17
|
+
# MSVS2019 v16.6.2
|
18
|
+
01047086 [ C ] VS2019 v16.6.2 build 28806
|
19
|
+
01037086 [ASM] VS2019 v16.6.2 build 28806
|
20
|
+
01057086 [C++] VS2019 v16.6.2 build 28806
|
21
|
+
00ff7086 [RES] VS2019 v16.6.2 build 28806
|
22
|
+
01027086 [LNK] VS2019 v16.6.2 build 28806
|
23
|
+
01007086 [EXP] VS2019 v16.6.2 build 28806
|
24
|
+
01017086 [IMP] VS2019 v16.6.2 build 28806
|
25
|
+
|
26
|
+
# MSVS2019 v16.6.0
|
27
|
+
01047085 [ C ] VS2019 v16.6.0 build 28805
|
28
|
+
01037085 [ASM] VS2019 v16.6.0 build 28805
|
29
|
+
01057085 [C++] VS2019 v16.6.0 build 28805
|
30
|
+
00ff7085 [RES] VS2019 v16.6.0 build 28805
|
31
|
+
01027085 [LNK] VS2019 v16.6.0 build 28805
|
32
|
+
01007085 [EXP] VS2019 v16.6.0 build 28805
|
33
|
+
01017085 [IMP] VS2019 v16.6.0 build 28805
|
34
|
+
|
35
|
+
# MSVS2019 v16.5.5 (also 16.5.4)
|
36
|
+
01046fc6 [ C ] VS2019 v16.5.5 build 28614
|
37
|
+
01036fc6 [ASM] VS2019 v16.5.5 build 28614
|
38
|
+
01056fc6 [C++] VS2019 v16.5.5 build 28614
|
39
|
+
00ff6fc6 [RES] VS2019 v16.5.5 build 28614
|
40
|
+
01026fc6 [LNK] VS2019 v16.5.5 build 28614
|
41
|
+
01006fc6 [EXP] VS2019 v16.5.5 build 28614
|
42
|
+
01016fc6 [IMP] VS2019 v16.5.5 build 28614
|
43
|
+
|
44
|
+
# Visual Studio 2019 version 16.5.2 (values are interpolated)
|
45
|
+
# source: https://walbourn.github.io/vs-2019-update-5/
|
46
|
+
01046fc4 [ C ] VS2019 v16.5.2 build 28612 (*)
|
47
|
+
01036fc4 [ASM] VS2019 v16.5.2 build 28612 (*)
|
48
|
+
01056fc4 [C++] VS2019 v16.5.2 build 28612 (*)
|
49
|
+
00ff6fc4 [RES] VS2019 v16.5.2 build 28612 (*)
|
50
|
+
01026fc4 [LNK] VS2019 v16.5.2 build 28612 (*)
|
51
|
+
01016fc4 [IMP] VS2019 v16.5.2 build 28612 (*)
|
52
|
+
01006fc4 [EXP] VS2019 v16.5.2 build 28612 (*)
|
53
|
+
|
54
|
+
# Visual Studio 2019 version 16.5.1 (values are interpolated)
|
55
|
+
01046fc3 [ C ] VS2019 v16.5.1 build 28611 (*)
|
56
|
+
01036fc3 [ASM] VS2019 v16.5.1 build 28611 (*)
|
57
|
+
01056fc3 [C++] VS2019 v16.5.1 build 28611 (*)
|
58
|
+
00ff6fc3 [RES] VS2019 v16.5.1 build 28611 (*)
|
59
|
+
01026fc3 [LNK] VS2019 v16.5.1 build 28611 (*)
|
60
|
+
01016fc3 [IMP] VS2019 v16.5.1 build 28611 (*)
|
61
|
+
01006fc3 [EXP] VS2019 v16.5.1 build 28611 (*)
|
62
|
+
|
63
|
+
# Visual Studio 2019 version 16.5.0 (values are interpolated)
|
64
|
+
# source: https://walbourn.github.io/vs-2019-update-5/
|
65
|
+
01046fc2 [ C ] VS2019 v16.5.0 build 28610 (*)
|
66
|
+
01036fc2 [ASM] VS2019 v16.5.0 build 28610 (*)
|
67
|
+
01056fc2 [C++] VS2019 v16.5.0 build 28610 (*)
|
68
|
+
00ff6fc2 [RES] VS2019 v16.5.0 build 28610 (*)
|
69
|
+
01026fc2 [LNK] VS2019 v16.5.0 build 28610 (*)
|
70
|
+
01016fc2 [IMP] VS2019 v16.5.0 build 28610 (*)
|
71
|
+
01006fc2 [EXP] VS2019 v16.5.0 build 28610 (*)
|
72
|
+
|
73
|
+
# MSVS2019 v16.4.6 (values are interpolated)
|
74
|
+
# source: https://walbourn.github.io/vs-2019-update-4/
|
75
|
+
01046e9f [ C ] VS2019 v16.4.6 build 28319 (*)
|
76
|
+
01036e9f [ASM] VS2019 v16.4.6 build 28319 (*)
|
77
|
+
01056e9f [C++] VS2019 v16.4.6 build 28319 (*)
|
78
|
+
00ff6e9f [RES] VS2019 v16.4.6 build 28319 (*)
|
79
|
+
01026e9f [LNK] VS2019 v16.4.6 build 28319 (*)
|
80
|
+
01006e9f [EXP] VS2019 v16.4.6 build 28319 (*)
|
81
|
+
01016e9f [IMP] VS2019 v16.4.6 build 28319 (*)
|
82
|
+
|
83
|
+
# MSVS2019 v16.4.4 (values are interpolated)
|
84
|
+
# source: https://walbourn.github.io/vs-2019-update-4/
|
85
|
+
01046e9c [ C ] VS2019 v16.4.4 build 28316 (*)
|
86
|
+
01036e9c [ASM] VS2019 v16.4.4 build 28316 (*)
|
87
|
+
01056e9c [C++] VS2019 v16.4.4 build 28316 (*)
|
88
|
+
00ff6e9c [RES] VS2019 v16.4.4 build 28316 (*)
|
89
|
+
01026e9c [LNK] VS2019 v16.4.4 build 28316 (*)
|
90
|
+
01006e9c [EXP] VS2019 v16.4.4 build 28316 (*)
|
91
|
+
01016e9c [IMP] VS2019 v16.4.4 build 28316 (*)
|
92
|
+
|
93
|
+
# MSVS2019 v16.4.3
|
94
|
+
01046e9b [ C ] VS2019 v16.4.3 build 28315
|
95
|
+
01036e9b [ASM] VS2019 v16.4.3 build 28315
|
96
|
+
01056e9b [C++] VS2019 v16.4.3 build 28315
|
97
|
+
00ff6e9b [RES] VS2019 v16.4.3 build 28315
|
98
|
+
01026e9b [LNK] VS2019 v16.4.3 build 28315
|
99
|
+
01006e9b [EXP] VS2019 v16.4.3 build 28315
|
100
|
+
01016e9b [IMP] VS2019 v16.4.3 build 28315
|
101
|
+
|
102
|
+
# Visual Studio 2019 version 16.4.0 (values are interpolated)
|
103
|
+
01046e9a [ C ] VS2019 v16.4.0 build 28314 (*)
|
104
|
+
01036e9a [ASM] VS2019 v16.4.0 build 28314 (*)
|
105
|
+
01056e9a [C++] VS2019 v16.4.0 build 28314 (*)
|
106
|
+
00ff6e9a [RES] VS2019 v16.4.0 build 28314 (*)
|
107
|
+
01026e9a [LNK] VS2019 v16.4.0 build 28314 (*)
|
108
|
+
01016e9a [IMP] VS2019 v16.4.0 build 28314 (*)
|
109
|
+
01006e9a [EXP] VS2019 v16.4.0 build 28314 (*)
|
110
|
+
|
111
|
+
# Visual Studio 2019 version 16.3.2 (values are interpolated)
|
112
|
+
01046dc9 [ C ] VS2019 v16.3.2 build 28105 (*)
|
113
|
+
01036dc9 [ASM] VS2019 v16.3.2 build 28105 (*)
|
114
|
+
01056dc9 [C++] VS2019 v16.3.2 build 28105 (*)
|
115
|
+
00ff6dc9 [RES] VS2019 v16.3.2 build 28105 (*)
|
116
|
+
01026dc9 [LNK] VS2019 v16.3.2 build 28105 (*)
|
117
|
+
01016dc9 [IMP] VS2019 v16.3.2 build 28105 (*)
|
118
|
+
01006dc9 [EXP] VS2019 v16.3.2 build 28105 (*)
|
119
|
+
|
120
|
+
# Visual Studio 2019 version 16.2.3 (values are interpolated)
|
121
|
+
01046d01 [ C ] VS2019 v16.2.3 build 27905 (*)
|
122
|
+
01036d01 [ASM] VS2019 v16.2.3 build 27905 (*)
|
123
|
+
01056d01 [C++] VS2019 v16.2.3 build 27905 (*)
|
124
|
+
00ff6d01 [RES] VS2019 v16.2.3 build 27905 (*)
|
125
|
+
01026d01 [LNK] VS2019 v16.2.3 build 27905 (*)
|
126
|
+
01016d01 [IMP] VS2019 v16.2.3 build 27905 (*)
|
127
|
+
01006d01 [EXP] VS2019 v16.2.3 build 27905 (*)
|
128
|
+
|
129
|
+
# Visual Studio 2019 version 16.1.2 (values are interpolated)
|
130
|
+
01046c36 [ C ] VS2019 v16.1.2 build 27702 (*)
|
131
|
+
01036c36 [ASM] VS2019 v16.1.2 build 27702 (*)
|
132
|
+
01056c36 [C++] VS2019 v16.1.2 build 27702 (*)
|
133
|
+
00ff6c36 [RES] VS2019 v16.1.2 build 27702 (*)
|
134
|
+
01026c36 [LNK] VS2019 v16.1.2 build 27702 (*)
|
135
|
+
01016c36 [IMP] VS2019 v16.1.2 build 27702 (*)
|
136
|
+
01006c36 [EXP] VS2019 v16.1.2 build 27702 (*)
|
137
|
+
|
138
|
+
# MSVS2019 v16.0.0
|
139
|
+
01046b74 [ C ] VS2019 v16.0.0 build 27508
|
140
|
+
01036b74 [ASM] VS2019 v16.0.0 build 27508
|
141
|
+
01056b74 [C++] VS2019 v16.0.0 build 27508
|
142
|
+
00ff6b74 [RES] VS2019 v16.0.0 build 27508
|
143
|
+
01026b74 [LNK] VS2019 v16.0.0 build 27508
|
144
|
+
01006b74 [EXP] VS2019 v16.0.0 build 27508
|
145
|
+
01016b74 [IMP] VS2019 v16.0.0 build 27508
|
146
|
+
|
147
|
+
# Visual Studio 2017 version 15.9.11 (values are interpolated)
|
148
|
+
01046996 [ C ] VS2017 v15.9.11 build 27030 (*)
|
149
|
+
01036996 [ASM] VS2017 v15.9.11 build 27030 (*)
|
150
|
+
01056996 [C++] VS2017 v15.9.11 build 27030 (*)
|
151
|
+
00ff6996 [RES] VS2017 v15.9.11 build 27030 (*)
|
152
|
+
01026996 [LNK] VS2017 v15.9.11 build 27030 (*)
|
153
|
+
01016996 [IMP] VS2017 v15.9.11 build 27030 (*)
|
154
|
+
01006996 [EXP] VS2017 v15.9.11 build 27030 (*)
|
155
|
+
|
156
|
+
# Visual Studio 2017 version 15.9.7 (values are interpolated)
|
157
|
+
01046993 [ C ] VS2017 v15.9.7 build 27027 (*)
|
158
|
+
01036993 [ASM] VS2017 v15.9.7 build 27027 (*)
|
159
|
+
01056993 [C++] VS2017 v15.9.7 build 27027 (*)
|
160
|
+
00ff6993 [RES] VS2017 v15.9.7 build 27027 (*)
|
161
|
+
01026993 [LNK] VS2017 v15.9.7 build 27027 (*)
|
162
|
+
01016993 [IMP] VS2017 v15.9.7 build 27027 (*)
|
163
|
+
01006993 [EXP] VS2017 v15.9.7 build 27027 (*)
|
164
|
+
|
165
|
+
# Visual Studio 2017 version 15.9.5 (values are interpolated)
|
166
|
+
01046992 [ C ] VS2017 v15.9.5 build 27026 (*)
|
167
|
+
01036992 [ASM] VS2017 v15.9.5 build 27026 (*)
|
168
|
+
01056992 [C++] VS2017 v15.9.5 build 27026 (*)
|
169
|
+
00ff6992 [RES] VS2017 v15.9.5 build 27026 (*)
|
170
|
+
01026992 [LNK] VS2017 v15.9.5 build 27026 (*)
|
171
|
+
01016992 [IMP] VS2017 v15.9.5 build 27026 (*)
|
172
|
+
01006992 [EXP] VS2017 v15.9.5 build 27026 (*)
|
173
|
+
|
174
|
+
# Visual Studio 2017 version 15.9.4 (values are interpolated)
|
175
|
+
01046991 [ C ] VS2017 v15.9.4 build 27025 (*)
|
176
|
+
01036991 [ASM] VS2017 v15.9.4 build 27025 (*)
|
177
|
+
01056991 [C++] VS2017 v15.9.4 build 27025 (*)
|
178
|
+
00ff6991 [RES] VS2017 v15.9.4 build 27025 (*)
|
179
|
+
01026991 [LNK] VS2017 v15.9.4 build 27025 (*)
|
180
|
+
01016991 [IMP] VS2017 v15.9.4 build 27025 (*)
|
181
|
+
01006991 [EXP] VS2017 v15.9.4 build 27025 (*)
|
182
|
+
|
183
|
+
# Visual Studio 2017 version 15.9.1 (values are interpolated)
|
184
|
+
0104698f [ C ] VS2017 v15.9.1 build 27023 (*)
|
185
|
+
0103698f [ASM] VS2017 v15.9.1 build 27023 (*)
|
186
|
+
0105698f [C++] VS2017 v15.9.1 build 27023 (*)
|
187
|
+
00ff698f [RES] VS2017 v15.9.1 build 27023 (*)
|
188
|
+
0102698f [LNK] VS2017 v15.9.1 build 27023 (*)
|
189
|
+
0101698f [IMP] VS2017 v15.9.1 build 27023 (*)
|
190
|
+
0100698f [EXP] VS2017 v15.9.1 build 27023 (*)
|
191
|
+
|
192
|
+
# Visual Studio 2017 version 15.8.5 (values are interpolated)
|
193
|
+
# source: https://walbourn.github.io/vs-2017-15-8-update/
|
194
|
+
0104686c [ C ] VS2017 v15.8.5 build 26732 (*)
|
195
|
+
0103686c [ASM] VS2017 v15.8.5 build 26732 (*)
|
196
|
+
0105686c [C++] VS2017 v15.8.5 build 26732 (*)
|
197
|
+
00ff686c [RES] VS2017 v15.8.5 build 26732 (*)
|
198
|
+
0102686c [LNK] VS2017 v15.8.5 build 26732 (*)
|
199
|
+
0101686c [IMP] VS2017 v15.8.5 build 26732 (*)
|
200
|
+
0100686c [EXP] VS2017 v15.8.5 build 26732 (*)
|
201
|
+
|
202
|
+
# Visual Studio 2017 version 15.8.9 (sic!) (values are interpolated)
|
203
|
+
# source: https://walbourn.github.io/vs-2017-15-8-update/
|
204
|
+
0104686a [ C ] VS2017 v15.8.9? build 26730 (*)
|
205
|
+
0103686a [ASM] VS2017 v15.8.9? build 26730 (*)
|
206
|
+
0105686a [C++] VS2017 v15.8.9? build 26730 (*)
|
207
|
+
00ff686a [RES] VS2017 v15.8.9? build 26730 (*)
|
208
|
+
0102686a [LNK] VS2017 v15.8.9? build 26730 (*)
|
209
|
+
0101686a [IMP] VS2017 v15.8.9? build 26730 (*)
|
210
|
+
0100686a [EXP] VS2017 v15.8.9? build 26730 (*)
|
211
|
+
|
212
|
+
# Visual Studio 2017 version 15.8.4 (values are interpolated)
|
213
|
+
# source: https://walbourn.github.io/vs-2017-15-8-update/
|
214
|
+
01046869 [ C ] VS2017 v15.8.4 build 26729 (*)
|
215
|
+
01036869 [ASM] VS2017 v15.8.4 build 26729 (*)
|
216
|
+
01056869 [C++] VS2017 v15.8.4 build 26729 (*)
|
217
|
+
00ff6869 [RES] VS2017 v15.8.4 build 26729 (*)
|
218
|
+
01026869 [LNK] VS2017 v15.8.4 build 26729 (*)
|
219
|
+
01016869 [IMP] VS2017 v15.8.4 build 26729 (*)
|
220
|
+
01006869 [EXP] VS2017 v15.8.4 build 26729 (*)
|
221
|
+
|
222
|
+
# Visual Studio 2017 version 15.8.0 (values are interpolated)
|
223
|
+
# source: https://walbourn.github.io/vs-2017-15-8-update/
|
224
|
+
01046866 [ C ] VS2017 v15.8.0 build 26726 (*)
|
225
|
+
01036866 [ASM] VS2017 v15.8.0 build 26726 (*)
|
226
|
+
01056866 [C++] VS2017 v15.8.0 build 26726 (*)
|
227
|
+
00ff6866 [RES] VS2017 v15.8.0 build 26726 (*)
|
228
|
+
01026866 [LNK] VS2017 v15.8.0 build 26726 (*)
|
229
|
+
01016866 [IMP] VS2017 v15.8.0 build 26726 (*)
|
230
|
+
01006866 [EXP] VS2017 v15.8.0 build 26726 (*)
|
231
|
+
|
232
|
+
# Visual Studio 2017 version 15.7.5 (values are interpolated)
|
233
|
+
01046741 [ C ] VS2017 v15.7.5 build 26433 (*)
|
234
|
+
01036741 [ASM] VS2017 v15.7.5 build 26433 (*)
|
235
|
+
01056741 [C++] VS2017 v15.7.5 build 26433 (*)
|
236
|
+
00ff6741 [RES] VS2017 v15.7.5 build 26433 (*)
|
237
|
+
01026741 [LNK] VS2017 v15.7.5 build 26433 (*)
|
238
|
+
01016741 [IMP] VS2017 v15.7.5 build 26433 (*)
|
239
|
+
01006741 [EXP] VS2017 v15.7.5 build 26433 (*)
|
240
|
+
|
241
|
+
# Visual Studio 2017 version 15.7.4 (values are interpolated)
|
242
|
+
# source: https://walbourn.github.io/vs-2017-15-7-update/
|
243
|
+
0104673f [ C ] VS2017 v15.7.4 build 26431 (*)
|
244
|
+
0103673f [ASM] VS2017 v15.7.4 build 26431 (*)
|
245
|
+
0105673f [C++] VS2017 v15.7.4 build 26431 (*)
|
246
|
+
00ff673f [RES] VS2017 v15.7.4 build 26431 (*)
|
247
|
+
0102673f [LNK] VS2017 v15.7.4 build 26431 (*)
|
248
|
+
0101673f [IMP] VS2017 v15.7.4 build 26431 (*)
|
249
|
+
0100673f [EXP] VS2017 v15.7.4 build 26431 (*)
|
250
|
+
|
251
|
+
# Visual Studio 2017 version 15.7.3 (values are interpolated)
|
252
|
+
0104673e [ C ] VS2017 v15.7.3 build 26430 (*)
|
253
|
+
0103673e [ASM] VS2017 v15.7.3 build 26430 (*)
|
254
|
+
0105673e [C++] VS2017 v15.7.3 build 26430 (*)
|
255
|
+
00ff673e [RES] VS2017 v15.7.3 build 26430 (*)
|
256
|
+
0102673e [LNK] VS2017 v15.7.3 build 26430 (*)
|
257
|
+
0101673e [IMP] VS2017 v15.7.3 build 26430 (*)
|
258
|
+
0100673e [EXP] VS2017 v15.7.3 build 26430 (*)
|
259
|
+
|
260
|
+
# Visual Studio 2017 version 15.7.2 (values are interpolated)
|
261
|
+
0104673d [ C ] VS2017 v15.7.2 build 26429 (*)
|
262
|
+
0103673d [ASM] VS2017 v15.7.2 build 26429 (*)
|
263
|
+
0105673d [C++] VS2017 v15.7.2 build 26429 (*)
|
264
|
+
00ff673d [RES] VS2017 v15.7.2 build 26429 (*)
|
265
|
+
0102673d [LNK] VS2017 v15.7.2 build 26429 (*)
|
266
|
+
0101673d [IMP] VS2017 v15.7.2 build 26429 (*)
|
267
|
+
0100673d [EXP] VS2017 v15.7.2 build 26429 (*)
|
268
|
+
|
269
|
+
# Visual Studio 2017 version 15.7.1 (values are interpolated)
|
270
|
+
0104673c [ C ] VS2017 v15.7.1 build 26428 (*)
|
271
|
+
0103673c [ASM] VS2017 v15.7.1 build 26428 (*)
|
272
|
+
0105673c [C++] VS2017 v15.7.1 build 26428 (*)
|
273
|
+
00ff673c [RES] VS2017 v15.7.1 build 26428 (*)
|
274
|
+
0102673c [LNK] VS2017 v15.7.1 build 26428 (*)
|
275
|
+
0101673c [IMP] VS2017 v15.7.1 build 26428 (*)
|
276
|
+
0100673c [EXP] VS2017 v15.7.1 build 26428 (*)
|
277
|
+
|
278
|
+
# Visual Studio 2017 version 15.6.7 (values are interpolated)
|
279
|
+
01046614 [ C ] VS2017 v15.6.7 build 26132 (*)
|
280
|
+
01036614 [ASM] VS2017 v15.6.7 build 26132 (*)
|
281
|
+
01056614 [C++] VS2017 v15.6.7 build 26132 (*)
|
282
|
+
00ff6614 [RES] VS2017 v15.6.7 build 26132 (*)
|
283
|
+
01026614 [LNK] VS2017 v15.6.7 build 26132 (*)
|
284
|
+
01016614 [IMP] VS2017 v15.6.7 build 26132 (*)
|
285
|
+
01006614 [EXP] VS2017 v15.6.7 build 26132 (*)
|
286
|
+
|
287
|
+
# Visual Studio 2017 version 15.6.6 (values are interpolated)
|
288
|
+
01046613 [ C ] VS2017 v15.6.6 build 26131 (*)
|
289
|
+
01036613 [ASM] VS2017 v15.6.6 build 26131 (*)
|
290
|
+
01056613 [C++] VS2017 v15.6.6 build 26131 (*)
|
291
|
+
00ff6613 [RES] VS2017 v15.6.6 build 26131 (*)
|
292
|
+
01026613 [LNK] VS2017 v15.6.6 build 26131 (*)
|
293
|
+
01016613 [IMP] VS2017 v15.6.6 build 26131 (*)
|
294
|
+
01006613 [EXP] VS2017 v15.6.6 build 26131 (*)
|
295
|
+
|
296
|
+
# Visual Studio 2017 version 15.6.4 has the same build number
|
297
|
+
# Visual Studio 2017 version 15.6.3 (values are interpolated)
|
298
|
+
01046611 [ C ] VS2017 v15.6.3 build 26129 (*)
|
299
|
+
01036611 [ASM] VS2017 v15.6.3 build 26129 (*)
|
300
|
+
01056611 [C++] VS2017 v15.6.3 build 26129 (*)
|
301
|
+
00ff6611 [RES] VS2017 v15.6.3 build 26129 (*)
|
302
|
+
01026611 [LNK] VS2017 v15.6.3 build 26129 (*)
|
303
|
+
01016611 [IMP] VS2017 v15.6.3 build 26129 (*)
|
304
|
+
01006611 [EXP] VS2017 v15.6.3 build 26129 (*)
|
305
|
+
|
306
|
+
# Visual Studio 2017 version 15.6.2 has the same build number
|
307
|
+
# Visual Studio 2017 version 15.6.1 has the same build number
|
308
|
+
# Visual Studio 2017 version 15.6.0 (values are interpolated)
|
309
|
+
01046610 [ C ] VS2017 v15.6.0 build 26128 (*)
|
310
|
+
01036610 [ASM] VS2017 v15.6.0 build 26128 (*)
|
311
|
+
01056610 [C++] VS2017 v15.6.0 build 26128 (*)
|
312
|
+
00ff6610 [RES] VS2017 v15.6.0 build 26128 (*)
|
313
|
+
01026610 [LNK] VS2017 v15.6.0 build 26128 (*)
|
314
|
+
01016610 [IMP] VS2017 v15.6.0 build 26128 (*)
|
315
|
+
01006610 [EXP] VS2017 v15.6.0 build 26128 (*)
|
316
|
+
|
317
|
+
# Visual Studio 2017 version 15.5.7 has the same build number
|
318
|
+
# Visual Studio 2017 version 15.5.6 (values are interpolated)
|
319
|
+
010464eb [ C ] VS2017 v15.5.6 build 25835 (*)
|
320
|
+
010364eb [ASM] VS2017 v15.5.6 build 25835 (*)
|
321
|
+
010564eb [C++] VS2017 v15.5.6 build 25835 (*)
|
322
|
+
00ff64eb [RES] VS2017 v15.5.6 build 25835 (*)
|
323
|
+
010264eb [LNK] VS2017 v15.5.6 build 25835 (*)
|
324
|
+
010164eb [IMP] VS2017 v15.5.6 build 25835 (*)
|
325
|
+
010064eb [EXP] VS2017 v15.5.6 build 25835 (*)
|
326
|
+
|
327
|
+
# MSVS2017 v15.5.4 (15.5.3 has the same build number)
|
328
|
+
010464ea [ C ] VS2017 v15.5.4 build 25834
|
329
|
+
010364ea [ASM] VS2017 v15.5.4 build 25834
|
330
|
+
010564ea [C++] VS2017 v15.5.4 build 25834
|
331
|
+
00ff64ea [RES] VS2017 v15.5.4 build 25834
|
332
|
+
010264ea [LNK] VS2017 v15.5.4 build 25834
|
333
|
+
010064ea [EXP] VS2017 v15.5.4 build 25834
|
334
|
+
010164ea [IMP] VS2017 v15.5.4 build 25834
|
335
|
+
|
336
|
+
# Visual Studio 2017 version 15.5.2 (values are interpolated)
|
337
|
+
010464e7 [ C ] VS2017 v15.5.2 build 25831 (*)
|
338
|
+
010364e7 [ASM] VS2017 v15.5.2 build 25831 (*)
|
339
|
+
010564e7 [C++] VS2017 v15.5.2 build 25831 (*)
|
340
|
+
00ff64e7 [RES] VS2017 v15.5.2 build 25831 (*)
|
341
|
+
010264e7 [LNK] VS2017 v15.5.2 build 25831 (*)
|
342
|
+
010164e7 [IMP] VS2017 v15.5.2 build 25831 (*)
|
343
|
+
010064e7 [EXP] VS2017 v15.5.2 build 25831 (*)
|
344
|
+
|
345
|
+
# Visual Studio 2017 version 15.4.5 (values are interpolated)
|
346
|
+
010463cb [ C ] VS2017 v15.4.5 build 25547 (*)
|
347
|
+
010363cb [ASM] VS2017 v15.4.5 build 25547 (*)
|
348
|
+
010563cb [C++] VS2017 v15.4.5 build 25547 (*)
|
349
|
+
00ff63cb [RES] VS2017 v15.4.5 build 25547 (*)
|
350
|
+
010263cb [LNK] VS2017 v15.4.5 build 25547 (*)
|
351
|
+
010163cb [IMP] VS2017 v15.4.5 build 25547 (*)
|
352
|
+
010063cb [EXP] VS2017 v15.4.5 build 25547 (*)
|
353
|
+
|
354
|
+
# Visual Studio 2017 version 15.4.4 (values are interpolated)
|
355
|
+
010463c6 [ C ] VS2017 v15.4.4 build 25542 (*)
|
356
|
+
010363c6 [ASM] VS2017 v15.4.4 build 25542 (*)
|
357
|
+
010563c6 [C++] VS2017 v15.4.4 build 25542 (*)
|
358
|
+
00ff63c6 [RES] VS2017 v15.4.4 build 25542 (*)
|
359
|
+
010263c6 [LNK] VS2017 v15.4.4 build 25542 (*)
|
360
|
+
010163c6 [IMP] VS2017 v15.4.4 build 25542 (*)
|
361
|
+
010063c6 [EXP] VS2017 v15.4.4 build 25542 (*)
|
362
|
+
|
363
|
+
# Visual Studio 2017 version 15.3.3 (values are interpolated)
|
364
|
+
010463a3 [ C ] VS2017 v15.3.3 build 25507 (*)
|
365
|
+
010363a3 [ASM] VS2017 v15.3.3 build 25507 (*)
|
366
|
+
010563a3 [C++] VS2017 v15.3.3 build 25507 (*)
|
367
|
+
00ff63a3 [RES] VS2017 v15.3.3 build 25507 (*)
|
368
|
+
010263a3 [LNK] VS2017 v15.3.3 build 25507 (*)
|
369
|
+
010163a3 [IMP] VS2017 v15.3.3 build 25507 (*)
|
370
|
+
010063a3 [EXP] VS2017 v15.3.3 build 25507 (*)
|
371
|
+
|
372
|
+
# Visual Studio 2017 version 15.3 (values are interpolated)
|
373
|
+
# source: https://twitter.com/visualc/status/897853176002433024
|
374
|
+
010463a2 [ C ] VS2017 v15.3 build 25506 (*)
|
375
|
+
010363a2 [ASM] VS2017 v15.3 build 25506 (*)
|
376
|
+
010563a2 [C++] VS2017 v15.3 build 25506 (*)
|
377
|
+
00ff63a2 [RES] VS2017 v15.3 build 25506 (*)
|
378
|
+
010263a2 [LNK] VS2017 v15.3 build 25506 (*)
|
379
|
+
010163a2 [IMP] VS2017 v15.3 build 25506 (*)
|
380
|
+
010063a2 [EXP] VS2017 v15.3 build 25506 (*)
|
381
|
+
|
382
|
+
# Visual Studio 2017 version 15.2 has the same build number
|
383
|
+
# Visual Studio 2017 version 15.1 has the same build number
|
384
|
+
# Visual Studio 2017 version 15.0 (values are interpolated)
|
385
|
+
010461b9 [ C ] VS2017 v15.0 build 25017 (*)
|
386
|
+
010361b9 [ASM] VS2017 v15.0 build 25017 (*)
|
387
|
+
010561b9 [C++] VS2017 v15.0 build 25017 (*)
|
388
|
+
00ff61b9 [RES] VS2017 v15.0 build 25017 (*)
|
389
|
+
010261b9 [LNK] VS2017 v15.0 build 25017 (*)
|
390
|
+
010161b9 [IMP] VS2017 v15.0 build 25017 (*)
|
391
|
+
010061b9 [EXP] VS2017 v15.0 build 25017 (*)
|
392
|
+
|
393
|
+
# MSVS Community 2015 UPD3.1 (cl version 19.00.24215.1) - some IDs are interpolated
|
394
|
+
# [ASM] is the same as in UPD3 build 24213
|
395
|
+
01045e97 [ C ] VS2015 UPD3.1 build 24215
|
396
|
+
01055e97 [C++] VS2015 UPD3.1 build 24215
|
397
|
+
01025e97 [LNK] VS2015 UPD3.1 build 24215
|
398
|
+
01005e97 [EXP] VS2015 UPD3.1 build 24215
|
399
|
+
01015e97 [IMP] VS2015 UPD3.1 build 24215
|
400
|
+
|
401
|
+
# MSVS Community 2015 UPD3 (cl version 19.00.24213.1)
|
402
|
+
01045e95 [ C ] VS2015 UPD3 build 24213
|
403
|
+
01035e92 [ASM] VS2015 UPD3 build 24210
|
404
|
+
01055e95 [C++] VS2015 UPD3 build 24213
|
405
|
+
00ff5e92 [RES] VS2015 UPD3 build 24210
|
406
|
+
01025e95 [LNK] VS2015 UPD3 build 24213
|
407
|
+
01005e95 [EXP] VS2015 UPD3 build 24213
|
408
|
+
01015e95 [IMP] VS2015 UPD3 build 24213
|
409
|
+
|
410
|
+
# Visual Studio 2015 Update 3 [14.0] (values are interpolated)
|
411
|
+
01045e92 [ C ] VS2015 Update 3 [14.0] build 24210 (*)
|
412
|
+
# 01035e92 [ASM] VS2015 Update 3 [14.0] build 24210 (*)
|
413
|
+
01055e92 [C++] VS2015 Update 3 [14.0] build 24210 (*)
|
414
|
+
# 00ff5e92 [RES] VS2015 Update 3 [14.0] build 24210 (*)
|
415
|
+
01025e92 [LNK] VS2015 Update 3 [14.0] build 24210 (*)
|
416
|
+
01015e92 [IMP] VS2015 Update 3 [14.0] build 24210 (*)
|
417
|
+
01005e92 [EXP] VS2015 Update 3 [14.0] build 24210 (*)
|
418
|
+
|
419
|
+
# MSVS Community 2015 UPD2 (14.0.25123.0?)
|
420
|
+
01045d6e [ C ] VS2015 UPD2 build 23918
|
421
|
+
01035d6e [ASM] VS2015 UPD2 build 23918
|
422
|
+
01055d6e [C++] VS2015 UPD2 build 23918
|
423
|
+
00ff5d6e [RES] VS2015 UPD2 build 23918
|
424
|
+
01025d6e [LNK] VS2015 UPD2 build 23918
|
425
|
+
01005d6e [EXP] VS2015 UPD2 build 23918
|
426
|
+
01015d6e [IMP] VS2015 UPD2 build 23918
|
427
|
+
|
428
|
+
# MSVS Community 2015 14.0.24728.2 (UPD 1) 14.0.24720.0 D14REL
|
429
|
+
01045bd2 [ C ] VS2015 UPD1 build 23506
|
430
|
+
01035bd2 [ASM] VS2015 UPD1 build 23506
|
431
|
+
01055bd2 [C++] VS2015 UPD1 build 23506
|
432
|
+
00ff5bd2 [RES] VS2015 UPD1 build 23506
|
433
|
+
01025bd2 [LNK] VS2015 UPD1 build 23506
|
434
|
+
01005bd2 [EXP] VS2015 UPD1 build 23506
|
435
|
+
01015bd2 [IMP] VS2015 UPD1 build 23506
|
436
|
+
|
437
|
+
# MSVS Community 2015 [14.0]
|
438
|
+
010459f2 [ C ] VS2015 [14.0] build 23026
|
439
|
+
010359f2 [ASM] VS2015 [14.0] build 23026
|
440
|
+
010559f2 [C++] VS2015 [14.0] build 23026
|
441
|
+
00ff59f2 [RES] VS2015 [14.0] build 23026
|
442
|
+
010259f2 [LNK] VS2015 [14.0] build 23026
|
443
|
+
010059f2 [EXP] VS2015 [14.0] build 23026
|
444
|
+
010159f2 [IMP] VS2015 [14.0] build 23026
|
445
|
+
|
446
|
+
# Visual Studio 2013 Nobemver CTP [12.0] (values are interpolated)
|
447
|
+
00e0527a [ C ] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
448
|
+
00df527a [ASM] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
449
|
+
00e1527a [C++] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
450
|
+
00db527a [RES] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
451
|
+
00de527a [LNK] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
452
|
+
00dd527a [IMP] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
453
|
+
00dc527a [EXP] VS2013 Nobemver CTP [12.0] build 21114 (*)
|
454
|
+
|
455
|
+
# MSVS2013 12.0.40629.00 Update 5
|
456
|
+
00e09eb5 [ C ] VS2013 UPD5 build 40629
|
457
|
+
00e19eb5 [C++] VS2013 UPD5 build 40629
|
458
|
+
# cvtres not updated since RTM version, so add interpolated one
|
459
|
+
00db9eb5 [RES] VS2013 Update 5 [12.0] build 40629 (*)
|
460
|
+
00de9eb5 [LNK] VS2013 UPD5 build 40629
|
461
|
+
00dc9eb5 [EXP] VS2013 UPD5 build 40629
|
462
|
+
00dd9eb5 [IMP] VS2013 UPD5 build 40629
|
463
|
+
00df9eb5 [ASM] VS2013 UPD5 build 40629
|
464
|
+
|
465
|
+
# MSVS2013 12.0.31101.00 Update 4 - not attested in real world, @comp.id is
|
466
|
+
# calculated.
|
467
|
+
00e0797d [ C ] VS2013 UPD4 build 31101 (*)
|
468
|
+
00e1797d [C++] VS2013 UPD4 build 31101 (*)
|
469
|
+
00db797d [RES] VS2013 UPD4 build 31101 (*)
|
470
|
+
00de797d [LNK] VS2013 UPD4 build 31101 (*)
|
471
|
+
00dc797d [EXP] VS2013 UPD4 build 31101 (*)
|
472
|
+
00dd797d [IMP] VS2013 UPD4 build 31101 (*)
|
473
|
+
00df797d [ASM] VS2013 UPD4 build 31101 (*)
|
474
|
+
|
475
|
+
# MSVS2013 12.0.30723.00 Update 3 - not attested in real world, @comp.id is
|
476
|
+
# calculated.
|
477
|
+
00e07803 [ C ] VS2013 UPD3 build 30723 (*)
|
478
|
+
00e17803 [C++] VS2013 UPD3 build 30723 (*)
|
479
|
+
00db7803 [RES] VS2013 UPD3 build 30723 (*)
|
480
|
+
00de7803 [LNK] VS2013 UPD3 build 30723 (*)
|
481
|
+
00dc7803 [EXP] VS2013 UPD3 build 30723 (*)
|
482
|
+
00dd7803 [IMP] VS2013 UPD3 build 30723 (*)
|
483
|
+
00df7803 [ASM] VS2013 UPD3 build 30723 (*)
|
484
|
+
|
485
|
+
# MSVS2013 12.0.30501.00 Update 2 - not attested in real world, @comp.id is
|
486
|
+
# calculated.
|
487
|
+
00e07725 [ C ] VS2013 UPD2 build 30501
|
488
|
+
00e17725 [C++] VS2013 UPD2 build 30501
|
489
|
+
# cvtres not updated since RTM version, so add interpolated one
|
490
|
+
00db7725 [RES] VS2013 Update 2 [12.0] build 30501 (*)
|
491
|
+
00de7725 [LNK] VS2013 UPD2 build 30501
|
492
|
+
00dc7725 [EXP] VS2013 UPD2 build 30501
|
493
|
+
00dd7725 [IMP] VS2013 UPD2 build 30501
|
494
|
+
00df7725 [ASM] VS2013 UPD2 build 30501
|
495
|
+
|
496
|
+
# Visual Studio 2013 Update2 RC [12.0] (values are interpolated)
|
497
|
+
00e07674 [ C ] VS2013 Update2 RC [12.0] build 30324 (*)
|
498
|
+
00df7674 [ASM] VS2013 Update2 RC [12.0] build 30324 (*)
|
499
|
+
00e17674 [C++] VS2013 Update2 RC [12.0] build 30324 (*)
|
500
|
+
00db7674 [RES] VS2013 Update2 RC [12.0] build 30324 (*)
|
501
|
+
00de7674 [LNK] VS2013 Update2 RC [12.0] build 30324 (*)
|
502
|
+
00dd7674 [IMP] VS2013 Update2 RC [12.0] build 30324 (*)
|
503
|
+
00dc7674 [EXP] VS2013 Update2 RC [12.0] build 30324 (*)
|
504
|
+
|
505
|
+
# MSVS2013 RTM
|
506
|
+
# Looks like it doesn't always dump linker's comp.id
|
507
|
+
# Visual Studio 2013 Update 1 [12.0] also has this build number
|
508
|
+
00e0520d [ C ] VS2013 build 21005
|
509
|
+
00e1520d [C++] VS2013 build 21005
|
510
|
+
00db520d [RES] VS2013 build 21005
|
511
|
+
00de520d [LNK] VS2013 build 21005
|
512
|
+
00dc520d [EXP] VS2013 build 21005
|
513
|
+
00dd520d [IMP] VS2013 build 21005
|
514
|
+
00df520d [ASM] VS2013 build 21005
|
515
|
+
|
516
|
+
# Visual Studio 2013 RC [12.0] (values are interpolated)
|
517
|
+
00e0515b [ C ] VS2013 RC [12.0] build 20827 (*)
|
518
|
+
00df515b [ASM] VS2013 RC [12.0] build 20827 (*)
|
519
|
+
00e1515b [C++] VS2013 RC [12.0] build 20827 (*)
|
520
|
+
00db515b [RES] VS2013 RC [12.0] build 20827 (*)
|
521
|
+
00de515b [LNK] VS2013 RC [12.0] build 20827 (*)
|
522
|
+
00dd515b [IMP] VS2013 RC [12.0] build 20827 (*)
|
523
|
+
00dc515b [EXP] VS2013 RC [12.0] build 20827 (*)
|
524
|
+
|
525
|
+
# Visual Studio 2013 Preview [12.0] (values are interpolated)
|
526
|
+
00e05089 [ C ] VS2013 Preview [12.0] build 20617 (*)
|
527
|
+
00df5089 [ASM] VS2013 Preview [12.0] build 20617 (*)
|
528
|
+
00e15089 [C++] VS2013 Preview [12.0] build 20617 (*)
|
529
|
+
00db5089 [RES] VS2013 Preview [12.0] build 20617 (*)
|
530
|
+
00de5089 [LNK] VS2013 Preview [12.0] build 20617 (*)
|
531
|
+
00dd5089 [IMP] VS2013 Preview [12.0] build 20617 (*)
|
532
|
+
00dc5089 [EXP] VS2013 Preview [12.0] build 20617 (*)
|
533
|
+
|
534
|
+
# MSVS2012 Premium Update 4 (11.0.61030.00 Update 4)
|
535
|
+
00ceee66 [ C ] VS2012 UPD4 build 61030
|
536
|
+
00cfee66 [C++] VS2012 UPD4 build 61030
|
537
|
+
00cdee66 [ASM] VS2012 UPD4 build 61030
|
538
|
+
00c9ee66 [RES] VS2012 UPD4 build 61030
|
539
|
+
00ccee66 [LNK] VS2012 UPD4 build 61030
|
540
|
+
00caee66 [EXP] VS2012 UPD4 build 61030
|
541
|
+
00cbee66 [IMP] VS2012 UPD4 build 61030
|
542
|
+
|
543
|
+
# MSVS2012 Update 3 (17.00.60610.1 Update 3) - not attested in real world,
|
544
|
+
# @comp.id is calculated.
|
545
|
+
00ceecc2 [ C ] VS2012 UPD3 build 60610 (*)
|
546
|
+
00cfecc2 [C++] VS2012 UPD3 build 60610 (*)
|
547
|
+
00cdecc2 [ASM] VS2012 UPD3 build 60610 (*)
|
548
|
+
00c9ecc2 [RES] VS2012 UPD3 build 60610 (*)
|
549
|
+
00ccecc2 [LNK] VS2012 UPD3 build 60610 (*)
|
550
|
+
00caecc2 [EXP] VS2012 UPD3 build 60610 (*)
|
551
|
+
00cbecc2 [IMP] VS2012 UPD3 build 60610 (*)
|
552
|
+
|
553
|
+
# MSVS2012 Update 2 (17.00.60315.1 Update 2) - not attested in real world,
|
554
|
+
# @comp.id is calculated.
|
555
|
+
00ceeb9b [ C ] VS2012 UPD2 build 60315 (*)
|
556
|
+
00cfeb9b [C++] VS2012 UPD2 build 60315 (*)
|
557
|
+
00cdeb9b [ASM] VS2012 UPD2 build 60315 (*)
|
558
|
+
00c9eb9b [RES] VS2012 UPD2 build 60315 (*)
|
559
|
+
00cceb9b [LNK] VS2012 UPD2 build 60315 (*)
|
560
|
+
00caeb9b [EXP] VS2012 UPD2 build 60315 (*)
|
561
|
+
00cbeb9b [IMP] VS2012 UPD2 build 60315 (*)
|
562
|
+
|
563
|
+
# MSVS2012 Update 1 (17.00.51106.1 Update 1) - not attested in real world,
|
564
|
+
# @comp.id is calculated.
|
565
|
+
00cec7a2 [ C ] VS2012 UPD1 build 51106 (*)
|
566
|
+
00cfc7a2 [C++] VS2012 UPD1 build 51106 (*)
|
567
|
+
00cdc7a2 [ASM] VS2012 UPD1 build 51106 (*)
|
568
|
+
00c9c7a2 [RES] VS2012 UPD1 build 51106 (*)
|
569
|
+
00ccc7a2 [LNK] VS2012 UPD1 build 51106 (*)
|
570
|
+
00cac7a2 [EXP] VS2012 UPD1 build 51106 (*)
|
571
|
+
00cbc7a2 [IMP] VS2012 UPD1 build 51106 (*)
|
572
|
+
|
573
|
+
# Visual Studio 2012 November CTP [11.0] (values are interpolated)
|
574
|
+
00cec751 [ C ] VS2012 November CTP [11.0] build 51025 (*)
|
575
|
+
00cdc751 [ASM] VS2012 November CTP [11.0] build 51025 (*)
|
576
|
+
00cfc751 [C++] VS2012 November CTP [11.0] build 51025 (*)
|
577
|
+
00c9c751 [RES] VS2012 November CTP [11.0] build 51025 (*)
|
578
|
+
00ccc751 [LNK] VS2012 November CTP [11.0] build 51025 (*)
|
579
|
+
00cbc751 [IMP] VS2012 November CTP [11.0] build 51025 (*)
|
580
|
+
00cac751 [EXP] VS2012 November CTP [11.0] build 51025 (*)
|
581
|
+
|
582
|
+
# MSVS2012 Premium (11.0.50727.1 RTMREL)
|
583
|
+
00cec627 [ C ] VS2012 build 50727
|
584
|
+
00cfc627 [C++] VS2012 build 50727
|
585
|
+
00c9c627 [RES] VS2012 build 50727
|
586
|
+
00cdc627 [ASM] VS2012 build 50727
|
587
|
+
00cac627 [EXP] VS2012 build 50727
|
588
|
+
00cbc627 [IMP] VS2012 build 50727
|
589
|
+
00ccc627 [LNK] VS2012 build 50727
|
590
|
+
|
591
|
+
# MSVS2010 SP1 kb 983509 (10.0.40219.1 SP1Rel)
|
592
|
+
00aa9d1b [ C ] VS2010 SP1 build 40219
|
593
|
+
00ab9d1b [C++] VS2010 SP1 build 40219
|
594
|
+
009d9d1b [LNK] VS2010 SP1 build 40219
|
595
|
+
009a9d1b [RES] VS2010 SP1 build 40219
|
596
|
+
009b9d1b [EXP] VS2010 SP1 build 40219
|
597
|
+
009c9d1b [IMP] VS2010 SP1 build 40219
|
598
|
+
009e9d1b [ASM] VS2010 SP1 build 40219
|
599
|
+
|
600
|
+
# MSVS2010 (10.0.30319.1 RTMRel)
|
601
|
+
00aa766f [ C ] VS2010 build 30319
|
602
|
+
00ab766f [C++] VS2010 build 30319
|
603
|
+
009d766f [LNK] VS2010 build 30319
|
604
|
+
009a766f [RES] VS2010 build 30319
|
605
|
+
009b766f [EXP] VS2010 build 30319
|
606
|
+
009c766f [IMP] VS2010 build 30319
|
607
|
+
009e766f [ASM] VS2010 build 30319
|
608
|
+
|
609
|
+
# Visual Studio 2010 Beta 2 [10.0] (values are interpolated)
|
610
|
+
00aa520b [ C ] VS2010 Beta 2 [10.0] build 21003 (*)
|
611
|
+
009e520b [ASM] VS2010 Beta 2 [10.0] build 21003 (*)
|
612
|
+
00ab520b [C++] VS2010 Beta 2 [10.0] build 21003 (*)
|
613
|
+
009a520b [RES] VS2010 Beta 2 [10.0] build 21003 (*)
|
614
|
+
009d520b [LNK] VS2010 Beta 2 [10.0] build 21003 (*)
|
615
|
+
009c520b [IMP] VS2010 Beta 2 [10.0] build 21003 (*)
|
616
|
+
009b520b [EXP] VS2010 Beta 2 [10.0] build 21003 (*)
|
617
|
+
|
618
|
+
# Visual Studio 2010 Beta 1 [10.0] (values are interpolated)
|
619
|
+
00aa501a [ C ] VS2010 Beta 1 [10.0] build 20506 (*)
|
620
|
+
009e501a [ASM] VS2010 Beta 1 [10.0] build 20506 (*)
|
621
|
+
00ab501a [C++] VS2010 Beta 1 [10.0] build 20506 (*)
|
622
|
+
009a501a [RES] VS2010 Beta 1 [10.0] build 20506 (*)
|
623
|
+
009d501a [LNK] VS2010 Beta 1 [10.0] build 20506 (*)
|
624
|
+
009c501a [IMP] VS2010 Beta 1 [10.0] build 20506 (*)
|
625
|
+
009b501a [EXP] VS2010 Beta 1 [10.0] build 20506 (*)
|
626
|
+
|
627
|
+
# MSVS2008 SP1 (9.0.30729.1 SP)
|
628
|
+
00837809 [ C ] VS2008 SP1 build 30729
|
629
|
+
00847809 [C++] VS2008 SP1 build 30729
|
630
|
+
# cvtres is the same as in VS2008, so add interpolated
|
631
|
+
00947809 [RES] VS2008 SP1 [9.0] build 30729 (*)
|
632
|
+
00957809 [ASM] VS2008 SP1 build 30729
|
633
|
+
00927809 [EXP] VS2008 SP1 build 30729
|
634
|
+
00937809 [IMP] VS2008 SP1 build 30729
|
635
|
+
00917809 [LNK] VS2008 SP1 build 30729
|
636
|
+
|
637
|
+
# MSVS2008 (9.0.21022.8 RTM)
|
638
|
+
0083521e [ C ] VS2008 build 21022
|
639
|
+
0084521e [C++] VS2008 build 21022
|
640
|
+
0091521e [LNK] VS2008 build 21022
|
641
|
+
0094521e [RES] VS2008 build 21022
|
642
|
+
0092521e [EXP] VS2008 build 21022
|
643
|
+
0093521e [IMP] VS2008 build 21022
|
644
|
+
0095521e [ASM] VS2008 build 21022
|
645
|
+
|
646
|
+
# Visual Studio 2008 Beta 2 [9.0] (values are interpolated)
|
647
|
+
008350e2 [ C ] VS2008 Beta 2 [9.0] build 20706 (*)
|
648
|
+
009550e2 [ASM] VS2008 Beta 2 [9.0] build 20706 (*)
|
649
|
+
008450e2 [C++] VS2008 Beta 2 [9.0] build 20706 (*)
|
650
|
+
009450e2 [RES] VS2008 Beta 2 [9.0] build 20706 (*)
|
651
|
+
009150e2 [LNK] VS2008 Beta 2 [9.0] build 20706 (*)
|
652
|
+
009350e2 [IMP] VS2008 Beta 2 [9.0] build 20706 (*)
|
653
|
+
009250e2 [EXP] VS2008 Beta 2 [9.0] build 20706 (*)
|
654
|
+
|
655
|
+
# MSVS2005 (RTM.50727-4200) cl version: 14.00.50727.42
|
656
|
+
# MSVS2005-SP1 dumps the same comp.id's.
|
657
|
+
# It is strange, but there exists VS2012 with the same build number:
|
658
|
+
# 11 Build 50727.1
|
659
|
+
006dc627 [ C ] VS2005 build 50727
|
660
|
+
006ec627 [C++] VS2005 build 50727
|
661
|
+
0078c627 [LNK] VS2005 build 50727
|
662
|
+
007cc627 [RES] VS2005 build 50727
|
663
|
+
007ac627 [EXP] VS2005 build 50727
|
664
|
+
007bc627 [IMP] VS2005 build 50727
|
665
|
+
007dc627 [ASM] VS2005 build 50727
|
666
|
+
|
667
|
+
# Visual Studio 2005 [8.0] (values are interpolated)
|
668
|
+
006dc490 [ C ] VS2005 [8.0] build 50320 (*)
|
669
|
+
007dc490 [ASM] VS2005 [8.0] build 50320 (*)
|
670
|
+
006ec490 [C++] VS2005 [8.0] build 50320 (*)
|
671
|
+
007cc490 [RES] VS2005 [8.0] build 50320 (*)
|
672
|
+
0078c490 [LNK] VS2005 [8.0] build 50320 (*)
|
673
|
+
007bc490 [IMP] VS2005 [8.0] build 50320 (*)
|
674
|
+
007ac490 [EXP] VS2005 [8.0] build 50320 (*)
|
675
|
+
|
676
|
+
# Visual Studio 2005 Beta 2 [8.0] (values are interpolated)
|
677
|
+
006dc427 [ C ] VS2005 Beta 2 [8.0] build 50215 (*)
|
678
|
+
007dc427 [ASM] VS2005 Beta 2 [8.0] build 50215 (*)
|
679
|
+
006ec427 [C++] VS2005 Beta 2 [8.0] build 50215 (*)
|
680
|
+
007cc427 [RES] VS2005 Beta 2 [8.0] build 50215 (*)
|
681
|
+
0078c427 [LNK] VS2005 Beta 2 [8.0] build 50215 (*)
|
682
|
+
007bc427 [IMP] VS2005 Beta 2 [8.0] build 50215 (*)
|
683
|
+
007ac427 [EXP] VS2005 Beta 2 [8.0] build 50215 (*)
|
684
|
+
|
685
|
+
# Visual Studio 2005 Beta 1 [8.0] (values are interpolated)
|
686
|
+
006d9e9f [ C ] VS2005 Beta 1 [8.0] build 40607 (*)
|
687
|
+
007d9e9f [ASM] VS2005 Beta 1 [8.0] build 40607 (*)
|
688
|
+
006e9e9f [C++] VS2005 Beta 1 [8.0] build 40607 (*)
|
689
|
+
007c9e9f [RES] VS2005 Beta 1 [8.0] build 40607 (*)
|
690
|
+
00789e9f [LNK] VS2005 Beta 1 [8.0] build 40607 (*)
|
691
|
+
007b9e9f [IMP] VS2005 Beta 1 [8.0] build 40607 (*)
|
692
|
+
007a9e9f [EXP] VS2005 Beta 1 [8.0] build 40607 (*)
|
693
|
+
|
694
|
+
# Windows Server 2003 SP1 DDK (for AMD64) (values are interpolated)
|
695
|
+
006d9d76 [ C ] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
696
|
+
007d9d76 [ASM] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
697
|
+
006e9d76 [C++] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
698
|
+
007c9d76 [RES] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
699
|
+
00789d76 [LNK] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
700
|
+
007b9d76 [IMP] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
701
|
+
007a9d76 [EXP] Windows Server 2003 SP1 DDK (for AMD64) build 40310 (*)
|
702
|
+
|
703
|
+
# MSVS2003 (.NET) SP1 (kb918007)
|
704
|
+
005f178e [ C ] VS2003 (.NET) SP1 build 6030
|
705
|
+
0060178e [C++] VS2003 (.NET) SP1 build 6030
|
706
|
+
005a178e [LNK] VS2003 (.NET) SP1 build 6030
|
707
|
+
000f178e [ASM] VS2003 (.NET) SP1 build 6030
|
708
|
+
# cvtres is the same version as without SP1
|
709
|
+
005e178e [RES] VS.NET 2003 SP1 [7.1] build 6030 (*)
|
710
|
+
005c178e [EXP] VS2003 (.NET) SP1 build 6030
|
711
|
+
005d178e [IMP] VS2003 (.NET) SP1 build 6030
|
712
|
+
|
713
|
+
# Windows Server 2003 SP1 DDK (values are interpolated)
|
714
|
+
005f0fc3 [ C ] Windows Server 2003 SP1 DDK build 4035 (*)
|
715
|
+
000f0fc3 [ASM] Windows Server 2003 SP1 DDK build 4035 (*)
|
716
|
+
00600fc3 [C++] Windows Server 2003 SP1 DDK build 4035 (*)
|
717
|
+
005e0fc3 [RES] Windows Server 2003 SP1 DDK build 4035 (*)
|
718
|
+
005a0fc3 [LNK] Windows Server 2003 SP1 DDK build 4035 (*)
|
719
|
+
005d0fc3 [IMP] Windows Server 2003 SP1 DDK build 4035 (*)
|
720
|
+
005c0fc3 [EXP] Windows Server 2003 SP1 DDK build 4035 (*)
|
721
|
+
|
722
|
+
# MSVS2003 (.NET) 7.0.1.3088
|
723
|
+
005f0c05 [ C ] VS2003 (.NET) build 3077
|
724
|
+
00600c05 [C++] VS2003 (.NET) build 3077
|
725
|
+
000f0c05 [ASM] VS2003 (.NET) build 3077
|
726
|
+
005e0bec [RES] VS2003 (.NET) build 3052
|
727
|
+
005c0c05 [EXP] VS2003 (.NET) build 3077
|
728
|
+
005d0c05 [IMP] VS2003 (.NET) build 3077
|
729
|
+
005a0c05 [LNK] VS2003 (.NET) build 3077
|
730
|
+
# Visual Studio .NET 2003 [7.1] (values are interpolated)
|
731
|
+
005e0c05 [RES] VS.NET 2003 [7.1] build 3077 (*)
|
732
|
+
|
733
|
+
# MSVS2002 (.NET) 7.0.9466
|
734
|
+
001c24fa [ C ] VS2002 (.NET) build 9466
|
735
|
+
001d24fa [C++] VS2002 (.NET) build 9466
|
736
|
+
004024fa [ASM] VS2002 (.NET) build 9466
|
737
|
+
003d24fa [LNK] VS2002 (.NET) build 9466
|
738
|
+
004524fa [RES] VS2002 (.NET) build 9466
|
739
|
+
003f24fa [EXP] VS2002 (.NET) build 9466
|
740
|
+
001924fa [IMP] VS2002 (.NET) build 9466
|
741
|
+
|
742
|
+
# Windows XP SP1 DDK (values are interpolated)
|
743
|
+
001c23d8 [ C ] Windows XP SP1 DDK build 9176 (*)
|
744
|
+
004023d8 [ASM] Windows XP SP1 DDK build 9176 (*)
|
745
|
+
001d23d8 [C++] Windows XP SP1 DDK build 9176 (*)
|
746
|
+
004523d8 [RES] Windows XP SP1 DDK build 9176 (*)
|
747
|
+
003d23d8 [LNK] Windows XP SP1 DDK build 9176 (*)
|
748
|
+
001923d8 [IMP] Windows XP SP1 DDK build 9176 (*)
|
749
|
+
003f23d8 [EXP] Windows XP SP1 DDK build 9176 (*)
|
750
|
+
|
751
|
+
# MSVS98 6.0 SP6 (Enterprise edition)
|
752
|
+
# Looks like linker may mix compids for C and C++ objects (why?)
|
753
|
+
000a2636 [ C ] VS98 (6.0) SP6 build 8804
|
754
|
+
000b2636 [C++] VS98 (6.0) SP6 build 8804
|
755
|
+
|
756
|
+
# MSVC++ 6.0 SP5 (Enterprise edition)
|
757
|
+
00152306 [ C ] VC++ 6.0 SP5 build 8804
|
758
|
+
00162306 [C++] VC++ 6.0 SP5 build 8804
|
759
|
+
000420ff [LNK] VC++ 6.0 SP5 imp/exp build 8447
|
760
|
+
000606c7 [RES] VS98 (6.0) SP6 cvtres build 1736
|
761
|
+
|
762
|
+
# MSVS6.0 (no servicepacks)
|
763
|
+
000a1fe8 [ C ] VS98 (6.0) build 8168
|
764
|
+
000b1fe8 [C++] VS98 (6.0) build 8168
|
765
|
+
000606b8 [RES] VS98 (6.0) cvtres build 1720
|
766
|
+
00041fe8 [LNK] VS98 (6.0) imp/exp build 8168
|
767
|
+
|
768
|
+
# MSVS97 5.0 Enterprise Edition (cl 11.00.7022, link 5.00.7022)
|
769
|
+
# Does NOT generate any @comp.id records, nor Rich headers.
|
770
|
+
# SP3 added Rich-generating linker (albeit it doesn't identify itself),
|
771
|
+
# and CVTRES and LIB(?) utilities that generate @comp.id records. There is no
|
772
|
+
# distinction between import and export records yet. I marked the records as
|
773
|
+
# [IMP] because VS98 linker seems to omit export records from the header; VS97
|
774
|
+
# linker might do the same.
|
775
|
+
00060684 [RES] VS97 (5.0) SP3 cvtres 5.00.1668
|
776
|
+
00021c87 [IMP] VS97 (5.0) SP3 link 5.10.7303
|