-
Notifications
You must be signed in to change notification settings - Fork 147
/
enip-enumerate.nse
1444 lines (1426 loc) · 47.9 KB
/
enip-enumerate.nse
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local bin = require "bin"
local ipOps = require "ipOps"
local nmap = require "nmap"
local shortport = require "shortport"
local stdnse = require "stdnse"
local string = require "string"
local table = require "table"
description = [[
This NSE script is used to send a EtherNet/IP packet to a remote device that
has TCP 44818 open. The script will send a Request Identity Packet and once a
response is received, it validates that it was a proper response to the command
that was sent, and then will parse out the data. Information that is parsed
includes Vendor ID, Device Type, Product name, Serial Number, Product code,
Revision Number, as well as the Device IP.
This script was written based of information collected by using the the
Wireshark dissector for CIP, and EtherNet/IP, The original information was
collected by running a modified version of the ethernetip.py script (
https://github.com/paperwork/pyenip )
http://digitalbond.com
]]
---
-- @usage
-- nmap --script enip-enumerate -sU -p 44818 <host>
--
--
-- @output
--44818/tcp open EtherNet/IP
--| enip-enumerate:
--| Vendor: Rockwell Automation/Allen-Bradley (1)
--| Product Name: 1769-L32E Ethernet Port
--| Serial Number: 0x000000
--| Device Type: Communications Adapter (12)
--| Product Code: 158
--| Revision: 3.7
--|_ Device IP: 192.168.1.1
-- @xmloutput
--<elem key="Vendor">Rockwell Automation/Allen-Bradley (1)</elem>
--<elem key="Product Name">1769-L32E Ethernet Port</elem>
--<elem key="Serial Number">0x000000</elem>
--<elem key="Device Type">Communications Adapter (12)</elem>
--<elem key="Product Code">158</elem>
--<elem key="Revision">3,7</elem>
--<elem key="Device IP">192.168.1.1</elem>
author = "Stephen Hilt (Digital Bond)"
license = "Same as Nmap--See http://nmap.org/book/man-legal.html"
categories = {"discovery", "intrusive","digitalbond"}
--
-- Function to define the portrule as per nmap standards
--
--
--
portrule = shortport.portnumber(44818, "tcp")
---
-- Table to look up the Vendor Name based on Vendor ID
-- Returns "Unknown Vendor Number" if Vendor ID not recognized
-- Table data from Wireshark dissector ( link to unofficial mirror )
-- https://github.com/avsej/wireshark/blob/master/epan/dissectors/packet-enip.c
-- Fetched on 4/19/2014
--
-- @key vennum Vendor number parsed out of the EtherNet/IP packet
local vendor_id = {
[0] = "Reserved",
[1] = "Rockwell Automation/Allen-Bradley",
[2] = "Namco Controls Corp.",
[3] = "Honeywell Inc.",
[4] = "Parker Hannifin Corp. (Veriflo Division)",
[5] = "Rockwell Automation/Reliance Elec.",
[6] = "Reserved",
[7] = "SMC Corporation",
[8] = "Molex Incorporated",
[9] = "Western Reserve Controls Corp.",
[10] = "Advanced Micro Controls Inc. (AMCI)",
[11] = "ASCO Pneumatic Controls",
[12] = "Banner Engineering Corp.",
[13] = "Belden Wire & Cable Company",
[14] = "Cooper Interconnect",
[15] = "Reserved",
[16] = "Daniel Woodhead Co. (Woodhead Connectivity)",
[17] = "Dearborn Group Inc.",
[18] = "Reserved",
[19] = "Helm Instrument Company",
[20] = "Huron Net Works",
[21] = "Lumberg Inc.",
[22] = "Online Development Inc.(Automation Value)",
[23] = "Vorne Industries Inc.",
[24] = "ODVA Special Reserve",
[25] = "Reserved",
[26] = "Festo Corporation",
[27] = "Reserved",
[28] = "Reserved",
[29] = "Reserved",
[30] = "Unico Inc.",
[31] = "Ross Controls",
[32] = "Reserved",
[33] = "Reserved",
[34] = "Hohner Corp.",
[35] = "Micro Mo Electronics Inc.",
[36] = "MKS Instruments Inc.",
[37] = "Yaskawa Electric America formerly Magnetek Drives",
[38] = "Reserved",
[39] = "AVG Automation (Uticor)",
[40] = "Wago Corporation",
[41] = "Kinetics (Unit Instruments)",
[42] = "IMI Norgren Limited",
[43] = "BALLUFF Inc.",
[44] = "Yaskawa Electric America Inc.",
[45] = "Eurotherm Controls Inc",
[46] = "ABB Industrial Systems",
[47] = "Omron Corporation",
[48] = "TURCk Inc.",
[49] = "Grayhill Inc.",
[50] = "Real Time Automation (C&ID)",
[51] = "Reserved",
[52] = "Numatics Inc.",
[53] = "Lutze Inc.",
[54] = "Reserved",
[55] = "Reserved",
[56] = "Softing GmbH",
[57] = "Pepperl + Fuchs",
[58] = "Spectrum Controls Inc.",
[59] = "D.I.P. Inc. MKS Inst.",
[60] = "Applied Motion Products Inc.",
[61] = "Sencon Inc.",
[62] = "High Country Tek",
[63] = "SWAC Automation Consult GmbH",
[64] = "Clippard Instrument Laboratory",
[65] = "Reserved",
[66] = "Reserved",
[67] = "Reserved",
[68] = "Eaton Electrical",
[69] = "Reserved",
[70] = "Reserved",
[71] = "Toshiba International Corp.",
[72] = "Control Technology Incorporated",
[73] = "TCS (NZ) Ltd.",
[74] = "HitachiLtd.",
[75] = "ABB Robotics Products AB",
[76] = "NKE Corporation",
[77] = "Rockwell Software Inc.",
[78] = "Escort Memory Systems (A Datalogic Group Co.)",
[79] = "Reserved",
[80] = "Industrial Devices Corporation",
[81] = "IXXAT Automation GmbH",
[82] = "Mitsubishi Electric Automation Inc.",
[83] = "OPTO-22",
[84] = "Reserved",
[85] = "Reserved",
[86] = "Horner Electric",
[87] = "Burkert Werke GmbH & Co. KG",
[88] = "Reserved",
[89] = "Industrial Indexing Systems Inc.",
[90] = "HMS Industrial Networks AB",
[91] = "Robicon",
[92] = "Helix Technology (Granville-Phillips)",
[93] = "Arlington Laboratory",
[94] = "Advantech Co. Ltd.",
[95] = "Square D Company",
[96] = "Digital Electronics Corp.",
[97] = "Danfoss",
[98] = "Reserved",
[99] = "Reserved",
[100] = "Bosch Rexroth Corporation] = Pneumatics",
[101] = "Applied Materials Inc.",
[102] = "Showa Electric Wire & Cable Co.",
[103] = "Pacific Scientific (API Controls Inc.)",
[104] = "Sharp Manufacturing Systems Corp.",
[105] = "Olflex Wire & Cable Inc.",
[106] = "Reserved",
[107] = "Unitrode",
[108] = "Beckhoff Automation GmbH",
[109] = "National Instruments",
[110] = "Mykrolis Corporations (Millipore)",
[111] = "International Motion Controls Corp.",
[112] = "Reserved",
[113] = "SEG Kempen GmbH",
[114] = "Reserved",
[115] = "Reserved",
[116] = "MTS Systems Corp.",
[117] = "Krones Inc",
[118] = "Reserved",
[119] = "EXOR Electronic R & D",
[120] = "SIEI S.p.A.",
[121] = "KUKA Roboter GmbH",
[122] = "Reserved",
[123] = "SEC (Samsung Electronics Co.Ltd)",
[124] = "Binary Electronics Ltd",
[125] = "Flexible Machine Controls",
[126] = "Reserved",
[127] = "ABB Inc. (Entrelec)",
[128] = "MAC Valves Inc.",
[129] = "Auma Actuators Inc",
[130] = "Toyoda Machine WorksLtd",
[131] = "Reserved",
[132] = "Reserved",
[133] = "Balogh T.A.G.] = Corporation",
[134] = "TR Systemtechnik GmbH",
[135] = "UNIPULSE Corporation",
[136] = "Reserved",
[137] = "Reserved",
[138] = "Conxall Corporation Inc.",
[139] = "Reserved",
[140] = "Reserved",
[141] = "Kuramo Electric Co.Ltd.",
[142] = "Creative Micro Designs",
[143] = "GE Industrial Systems",
[144] = "Leybold Vacuum GmbH",
[145] = "Siemens Energy & Automation/Drives",
[146] = "Kodensha Ltd",
[147] = "Motion Engineering Inc.",
[148] = "Honda Engineering Co.Ltd",
[149] = "EIM Valve Controls",
[150] = "Melec Inc.",
[151] = "Sony Manufacturing Systems Corporation",
[152] = "North American Mfg.",
[153] = "WATLOW",
[154] = "Japan Radio Co.Ltd",
[155] = "NADEX Co.Ltd",
[156] = "Ametek Automation & Process Technologies",
[157] = "Reserved",
[158] = "KVASER AB",
[159] = "IDEC IZUMI Corporation",
[160] = "Mitsubishi Heavy Industries Ltd",
[161] = "Mitsubishi Electric Corporation",
[162] = "Horiba-STEC Inc.",
[163] = "esd electronic system design gmbh",
[164] = "DAIHEN Corporation",
[165] = "Tyco Valves & Controls/Keystone",
[166] = "EBARA Corporation",
[167] = "Reserved",
[168] = "Reserved",
[169] = "Hokuyo Electric Co. Ltd",
[170] = "Pyramid Solutions Inc.",
[171] = "Denso Wave Incorporated",
[172] = "HLS Hard-Line Solutions Inc",
[173] = "Caterpillar Inc.",
[174] = "PDL Electronics Ltd.",
[175] = "Reserved",
[176] = "Red Lion Controls",
[177] = "ANELVA Corporation",
[178] = "Toyo Denki Seizo KK",
[179] = "Sanyo Denki Co.Ltd",
[180] = "Advanced Energy Japan K.K. (Aera Japan)",
[181] = "Pilz GmbH & Co",
[182] = "Marsh Bellofram-Bellofram PCD Division",
[183] = "Reserved",
[184] = "M-SYSTEM Co. Ltd",
[185] = "Nissin Electric Co.Ltd",
[186] = "Hitachi Metals Ltd.",
[187] = "Oriental Motor Company",
[188] = "A&D Co.Ltd",
[189] = "Phasetronics Inc.",
[190] = "Cummins Engine Company",
[191] = "Deltron Inc.",
[192] = "Geneer Corporation",
[193] = "Anatol Automation Inc.",
[194] = "Reserved",
[195] = "Reserved",
[196] = "Medar Inc.",
[197] = "Comdel Inc.",
[198] = "Advanced Energy Industries Inc",
[199] = "Reserved",
[200] = "DAIDEN Co.Ltd",
[201] = "CKD Corporation",
[202] = "Toyo Electric Corporation",
[203] = "Reserved",
[204] = "AuCom Electronics Ltd",
[205] = "Shinko Electric Co.Ltd",
[206] = "Vector Informatik GmbH",
[207] = "Reserved",
[208] = "Moog Inc.",
[209] = "Contemporary Controls",
[210] = "Tokyo Sokki Kenkyujo Co.Ltd",
[211] = "Schenck-AccuRate Inc.",
[212] = "The Oilgear Company",
[213] = "Reserved",
[214] = "ASM Japan K.K.",
[215] = "HIRATA Corp.",
[216] = "SUNX Limited",
[217] = "Meidensha Corp.",
[218] = "NIDEC SANKYO CORPORATION (Sankyo Seiki Mfg. Co.Ltd)",
[219] = "KAMRO Corp.",
[220] = "Nippon System Development Co.Ltd",
[221] = "EBARA Technologies Inc.",
[222] = "Reserved",
[223] = "Reserved",
[224] = "SG Co.Ltd",
[225] = "Vaasa Institute of Technology",
[226] = "MKS Instruments (ENI Technology)",
[227] = "Tateyama System Laboratory Co.Ltd.",
[228] = "QLOG Corporation",
[229] = "Matric Limited Inc.",
[230] = "NSD Corporation",
[231] = "Reserved",
[232] = "Sumitomo Wiring SystemsLtd",
[233] = "Group 3 Technology Ltd",
[234] = "CTI Cryogenics",
[235] = "POLSYS CORP",
[236] = "Ampere Inc.",
[237] = "Reserved",
[238] = "Simplatroll Ltd",
[239] = "Reserved",
[240] = "Reserved",
[241] = "Leading Edge Design",
[242] = "Humphrey Products",
[243] = "Schneider Automation Inc.",
[244] = "Westlock Controls Corp.",
[245] = "Nihon Weidmuller Co.Ltd",
[246] = "Brooks Instrument (Div. of Emerson)",
[247] = "Reserved",
[248] = " Moeller GmbH",
[249] = "Varian Vacuum Products",
[250] = "Yokogawa Electric Corporation",
[251] = "Electrical Design Daiyu Co.Ltd",
[252] = "Omron Software Co.Ltd",
[253] = "BOC Edwards",
[254] = "Control Technology Corporation",
[255] = "Bosch Rexroth",
[256] = "Turck",
[257] = "Control Techniques PLC",
[258] = "Hardy Instruments Inc.",
[259] = "LS Industrial Systems",
[260] = "E.O.A. Systems Inc.",
[261] = "Reserved",
[262] = "New Cosmos Electric Co.Ltd.",
[263] = "Sense Eletronica LTDA",
[264] = "Xycom Inc.",
[265] = "Baldor Electric",
[266] = "Reserved",
[267] = "Patlite Corporation",
[268] = "Reserved",
[269] = "Mogami Wire & Cable Corporation",
[270] = "Welding Technology Corporation (WTC)",
[271] = "Reserved",
[272] = "Deutschmann Automation GmbH",
[273] = "ICP Panel-Tec Inc.",
[274] = "Bray Controls USA",
[275] = "Reserved",
[276] = "Status Technologies",
[277] = "Trio Motion Technology Ltd",
[278] = "Sherrex Systems Ltd",
[279] = "Adept Technology Inc.",
[280] = "Spang Power Electronics",
[281] = "Reserved",
[282] = "Acrosser Technology Co.Ltd",
[283] = "Hilscher GmbH",
[284] = "IMAX Corporation",
[285] = "Electronic Innovation Inc. (Falter Engineering)",
[286] = "Netlogic Inc.",
[287] = "Bosch Rexroth Corporation] = Indramat",
[288] = "Reserved",
[289] = "Reserved",
[290] = "Murata Machinery Ltd.",
[291] = "MTT Company Ltd.",
[292] = "Kanematsu Semiconductor Corp.",
[293] = "Takebishi Electric Sales Co.",
[294] = "Tokyo Electron Device Ltd",
[295] = "PFU Limited",
[296] = "Hakko Automation Co.Ltd.",
[297] = "Advanet Inc.",
[298] = "Tokyo Electron Software Technologies Ltd.",
[299] = "Reserved",
[300] = "Shinagawa Electric Wire Co.Ltd.",
[301] = "Yokogawa M&C Corporation",
[302] = "KONAN Electric Co.Ltd.",
[303] = "Binar Elektronik AB",
[304] = "Furukawa Electric Co.",
[305] = "Cooper Energy Services",
[306] = "Schleicher GmbH & Co.",
[307] = "Hirose Electric Co.Ltd",
[308] = "Western Servo Design Inc.",
[309] = "Prosoft Technology",
[310] = "Reserved",
[311] = "Towa Shoko Co.Ltd",
[312] = "Kyopal Co.Ltd",
[313] = "Extron Co.",
[314] = "Wieland Electric GmbH",
[315] = "SEW Eurodrive GmbH",
[316] = "Aera Corporation",
[317] = "STA Reutlingen",
[318] = "Reserved",
[319] = "Fuji Electric Co.Ltd.",
[320] = "Reserved",
[321] = "Reserved",
[322] = "ifm efector] = inc.",
[323] = "Reserved",
[324] = "IDEACOD-Hohner Automation S.A.",
[325] = "CommScope Inc.",
[326] = "GE Fanuc Automation North America Inc.",
[327] = "Matsushita Electric Industrial Co.Ltd",
[328] = "Okaya Electronics Corporation",
[329] = "KASHIYAMA IndustriesLtd",
[330] = "JVC",
[331] = "Interface Corporation",
[332] = "Grape Systems Inc.",
[333] = "Reserved",
[334] = "Reserved",
[335] = "Toshiba IT & Control Systems Corporation",
[336] = "Sanyo Machine WorksLtd.",
[337] = "Vansco Electronics Ltd.",
[338] = "Dart Container Corp.",
[339] = "Livingston & Co. Inc.",
[340] = "Alfa Laval LKM as",
[341] = "BF ENTRON Ltd. (British Federal)",
[342] = "Bekaert Engineering NV",
[343] = "Ferran Scientific Inc.",
[344] = "KEBA AG",
[345] = "Endress + Hauser",
[346] = "Reserved",
[347] = "ABB ALSTOM Power UK Ltd. (EGT)",
[348] = "Berger Lahr GmbH",
[349] = "Reserved",
[350] = "Federal Signal Corp.",
[351] = "Kawasaki Robotics (USA) Inc.",
[352] = "Bently Nevada Corporation",
[353] = "Reserved",
[354] = "FRABA Posital GmbH",
[355] = "Elsag Bailey Inc.",
[356] = "Fanuc Robotics America",
[357] = "Reserved",
[358] = "Surface Combustion Inc.",
[359] = "Reserved",
[360] = "AILES Electronics Ind. Co.Ltd.",
[361] = "Wonderware Corporation",
[362] = "Particle Measuring Systems Inc.",
[363] = "Reserved",
[364] = "Reserved",
[365] = "BITS Co.Ltd",
[366] = "Japan Aviation Electronics Industry Ltd",
[367] = "Keyence Corporation",
[368] = "Kuroda Precision Industries Ltd.",
[369] = "Mitsubishi Electric Semiconductor Application",
[370] = "Nippon Seisen CableLtd.",
[371] = "Omron ASO Co.Ltd",
[372] = "Seiko Seiki Co.Ltd.",
[373] = "Sumitomo Heavy IndustriesLtd.",
[374] = "Tango Computer Service Corporation",
[375] = "Technology Service Inc.",
[376] = "Toshiba Information Systems (Japan) Corporation",
[377] = "TOSHIBA Schneider Inverter Corporation",
[378] = "Toyooki Kogyo Co.Ltd.",
[379] = "XEBEC",
[380] = "Madison Cable Corporation",
[381] = "Hitati Engineering & Services Co.Ltd",
[382] = "TEM-TECH Lab Co.Ltd",
[383] = "International Laboratory Corporation",
[384] = "Dyadic Systems Co.Ltd.",
[385] = "SETO Electronics Industry Co.Ltd",
[386] = "Tokyo Electron Kyushu Limited",
[387] = "KEI System Co.Ltd",
[388] = "Reserved",
[389] = "Asahi Engineering Co.Ltd",
[390] = "Contrex Inc.",
[391] = "Paradigm Controls Ltd.",
[392] = "Reserved",
[393] = "Ohm Electric Co.Ltd.",
[394] = "RKC Instrument Inc.",
[395] = "Suzuki Motor Corporation",
[396] = "Custom Servo Motors Inc.",
[397] = "PACE Control Systems",
[398] = "Reserved",
[399] = "Reserved",
[400] = "LINTEC Co.Ltd.",
[401] = "Hitachi Cable Ltd.",
[402] = "BUSWARE Direct",
[403] = "Eaton Electric B.V. (former Holec Holland N.V.)",
[404] = "VAT Vakuumventile AG",
[405] = "Scientific Technologies Incorporated",
[406] = "Alfa Instrumentos Eletronicos Ltda",
[407] = "TWK Elektronik GmbH",
[408] = "ABB Welding Systems AB",
[409] = "BYSTRONIC Maschinen AG",
[410] = "Kimura Electric Co.Ltd",
[411] = "Nissei Plastic Industrial Co.Ltd",
[412] = "Reserved",
[413] = "Kistler-Morse Corporation",
[414] = "Proteous Industries Inc.",
[415] = "IDC Corporation",
[416] = "Nordson Corporation",
[417] = "Rapistan Systems",
[418] = "LP-Elektronik GmbH",
[419] = "GERBI & FASE S.p.A.(Fase Saldatura)",
[420] = "Phoenix Digital Corporation",
[421] = "Z-World Engineering",
[422] = "Honda R&D Co.Ltd.",
[423] = "Bionics Instrument Co.Ltd.",
[424] = "Teknic Inc.",
[425] = "R.Stahl Inc.",
[426] = "Reserved",
[427] = "Ryco Graphic Manufacturing Inc.",
[428] = "Giddings & Lewis Inc.",
[429] = "Koganei Corporation",
[430] = "Reserved",
[431] = "Nichigoh Communication Electric Wire Co.Ltd.",
[432] = "Reserved",
[433] = "Fujikura Ltd.",
[434] = "AD Link Technology Inc.",
[435] = "StoneL Corporation",
[436] = "Computer Optical Products Inc.",
[437] = "CONOS Inc.",
[438] = "Erhardt + Leimer GmbH",
[439] = "UNIQUE Co. Ltd",
[440] = "Roboticsware Inc.",
[441] = "Nachi Fujikoshi Corporation",
[442] = "Hengstler GmbH",
[443] = "Reserved",
[444] = "SUNNY GIKEN Inc.",
[445] = "Lenze Drive Systems GmbH",
[446] = "CD Systems B.V.",
[447] = "FMT/Aircraft Gate Support Systems AB",
[448] = "Axiomatic Technologies Corp",
[449] = "Embedded System Products Inc.",
[450] = "Reserved",
[451] = "Mencom Corporation",
[452] = "Reserved",
[453] = "Matsushita Welding Systems Co.Ltd.",
[454] = "Dengensha Mfg. Co. Ltd.",
[455] = "Quinn Systems Ltd.",
[456] = "Tellima Technology Ltd",
[457] = "MDT] = Software",
[458] = "Taiwan Keiso Co.Ltd",
[459] = "Pinnacle Systems",
[460] = "Ascom Hasler Mailing Sys",
[461] = "INSTRUMAR Limited",
[462] = "Reserved",
[463] = "Navistar International Transportation Corp",
[464] = "Huettinger Elektronik GmbH + Co. KG",
[465] = "OCM Technology Inc.",
[466] = "Professional Supply Inc.",
[467] = "Control Solutions",
[468] = "Baumer IVO GmbH & Co. KG",
[469] = "Worcester Controls Corporation",
[470] = "Pyramid Technical Consultants Inc.",
[471] = "Reserved",
[472] = "Apollo Fire Detectors Limited",
[473] = "Avtron Manufacturing Inc.",
[474] = "Reserved",
[475] = "Tokyo Keiso Co.Ltd.",
[476] = "Daishowa Swiki Co.Ltd.",
[477] = "Kojima Instruments Inc.",
[478] = "Shimadzu Corporation",
[479] = "Tatsuta Electric Wire & Cable Co.Ltd.",
[480] = "MECS Corporation",
[481] = "Tahara Electric",
[482] = "Koyo Electronics",
[483] = "Clever Devices",
[484] = "GCD Hardware & Software GmbH",
[485] = "Reserved",
[486] = "Miller Electric Mfg Co.",
[487] = "GEA Tuchenhagen GmbH",
[488] = "Riken Keiki Co.] = LTD",
[489] = "Keisokugiken Corporation",
[490] = "Fuji Machine Mfg. Co.Ltd",
[491] = "Reserved",
[492] = "Nidec-Shimpo Corp.",
[493] = "UTEC Corporation",
[494] = "Sanyo Electric Co. Ltd.",
[495] = "Reserved",
[496] = "Reserved",
[497] = "Okano Electric Wire Co. Ltd",
[498] = "Shimaden Co. Ltd.",
[499] = "Teddington Controls Ltd",
[500] = "Reserved",
[501] = "VIPA GmbH",
[502] = "Warwick Manufacturing Group",
[503] = "Danaher Controls",
[504] = "Reserved",
[505] = "Reserved",
[506] = "American Science & Engineering",
[507] = "Accutron Controls International Inc.",
[508] = "Norcott Technologies Ltd",
[509] = "TB Woods Inc",
[510] = "Proportion-Air Inc.",
[511] = "SICK Stegmann GmbH",
[512] = "Reserved",
[513] = "Edwards Signaling",
[514] = "Sumitomo Metal IndustriesLtd",
[515] = "Cosmo Instruments Co.Ltd.",
[516] = "Denshosha Co.Ltd.",
[517] = "Kaijo Corp.",
[518] = "Michiproducts Co.Ltd.",
[519] = "Miura Corporation",
[520] = "TG Information Network Co.Ltd.",
[521] = "Fujikin Inc.",
[522] = "Estic Corp.",
[523] = "GS Hydraulic Sales",
[524] = "Reserved",
[525] = "MTE Limited",
[526] = "Hyde Park Electronics Inc.",
[527] = "Pfeiffer Vacuum GmbH",
[528] = "Cyberlogic Technologies",
[529] = "OKUMA Corporation FA Systems Division",
[530] = "Reserved",
[531] = "Hitachi Kokusai Electric Co.Ltd.",
[532] = "SHINKO TECHNOS Co.Ltd.",
[533] = "Itoh Electric Co.Ltd.",
[534] = "Colorado Flow Tech Inc.",
[535] = "Love Controls Division/Dwyer Inst.",
[536] = "Alstom Drives and Controls",
[537] = "The Foxboro Company",
[538] = "Tescom Corporation",
[539] = "Reserved",
[540] = "Atlas Copco Controls UK",
[541] = "Reserved",
[542] = "Autojet Technologies",
[543] = "Prima Electronics S.p.A.",
[544] = "PMA GmbH",
[545] = "Shimafuji Electric Co.Ltd",
[546] = "Oki Electric Industry Co.Ltd",
[547] = "Kyushu Matsushita Electric Co.Ltd",
[548] = "Nihon Electric Wire & Cable Co.Ltd",
[549] = "Tsuken Electric Ind Co.Ltd",
[550] = "Tamadic Co.",
[551] = "MAATEL SA",
[552] = "OKUMA America",
[553] = "Control Techniques PLC-NA",
[554] = "TPC Wire & Cable",
[555] = "ATI Industrial Automation",
[556] = "Microcontrol (Australia) Pty Ltd",
[557] = "Serra Soldadura] = S.A.",
[558] = "Southwest Research Institute",
[559] = "Cabinplant International",
[560] = "Sartorius Mechatronics T&H GmbH",
[561] = "Comau S.p.A. Robotics & Final Assembly Division",
[562] = "Phoenix Contact",
[563] = "Yokogawa MAT Corporation",
[564] = "asahi sangyo co.] = ltd.",
[565] = "Reserved",
[566] = "Akita Myotoku Ltd.",
[567] = "OBARA Corp.",
[568] = "Suetron Electronic GmbH",
[569] = "Reserved",
[570] = "Serck Controls Limited",
[571] = "Fairchild Industrial Products Company",
[572] = "ARO S.A.",
[573] = "M2C GmbH",
[574] = "Shin Caterpillar Mitsubishi Ltd.",
[575] = "Santest Co.Ltd.",
[576] = "Cosmotechs Co.Ltd.",
[577] = "Hitachi Electric Systems",
[578] = "Smartscan Ltd",
[579] = "Woodhead Software & Electronics France",
[580] = "Athena Controls Inc.",
[581] = "Syron Engineering & Manufacturing Inc.",
[582] = "Asahi Optical Co.Ltd.",
[583] = "Sansha Electric Mfg. Co.Ltd.",
[584] = "Nikki Denso Co.Ltd.",
[585] = "Star Micronics] = Co.Ltd.",
[586] = "Ecotecnia Socirtat Corp.",
[587] = "AC Technology Corp.",
[588] = "West Instruments Limited",
[589] = "NTI Limited",
[590] = "Delta Computer Systems Inc.",
[591] = "FANUC Ltd.",
[592] = "Hearn-Gu Lee",
[593] = "ABB Automation Products",
[594] = "Orion Machinery Co.Ltd.",
[595] = "Reserved",
[596] = "Wire-Pro Inc.",
[597] = "Beijing Huakong Technology Co. Ltd.",
[598] = "Yokoyama Shokai Co.Ltd.",
[599] = "Toyogiken Co.Ltd.",
[600] = "Coester Equipamentos Eletronicos Ltda.",
[601] = "Reserved",
[602] = "Electroplating Engineers of Japan Ltd.",
[603] = "ROBOX S.p.A.",
[604] = "Spraying Systems Company",
[605] = "Benshaw Inc.",
[606] = "ZPA-DP A.S.",
[607] = "Wired Rite Systems",
[608] = "Tandis Research Inc.",
[609] = "SSD Drives GmbH",
[610] = "ULVAC Japan Ltd.",
[611] = "DYNAX Corporation",
[612] = "Nor-Cal Products Inc.",
[613] = "Aros Electronics AB",
[614] = "Jun-Tech Co.Ltd.",
[615] = "HAN-MI Co. Ltd.",
[616] = "uniNtech (formerly SungGi Internet)",
[617] = "Hae Pyung Electronics Reserch Institute",
[618] = "Milwaukee Electronics",
[619] = "OBERG Industries",
[620] = "Parker Hannifin/Compumotor Division",
[621] = "TECHNO DIGITAL CORPORATION",
[622] = "Network Supply Co.Ltd.",
[623] = "Union Electronics Co.Ltd.",
[624] = "Tritronics Services PM Ltd.",
[625] = "Rockwell Automation-Sprecher+Schuh",
[626] = "Matsushita Electric Industrial Co.Ltd/Motor Co.",
[627] = "Rolls-Royce Energy Systems Inc.",
[628] = "JEONGIL INTERCOM CO.] = LTD",
[629] = "Interroll Corp.",
[630] = "Hubbell Wiring Device-Kellems (Delaware)",
[631] = "Intelligent Motion Systems",
[632] = "Reserved",
[633] = "INFICON AG",
[634] = "Hirschmann Inc.",
[635] = "The Siemon Company",
[636] = "YAMAHA Motor Co. Ltd.",
[637] = "aska corporation",
[638] = "Woodhead Connectivity",
[639] = "Trimble AB",
[640] = "Murrelektronik GmbH",
[641] = "Creatrix Labs Inc.",
[642] = "TopWorx",
[643] = "Kumho Industrial Co.Ltd.",
[644] = "Wind River Systems Inc.",
[645] = "Bihl & Wiedemann GmbH",
[646] = "Harmonic Drive Systems Inc.",
[647] = "Rikei Corporation",
[648] = "BL AutotecLtd.",
[649] = "Hana Information & Technology Co.Ltd.",
[650] = "Seoil Electric Co.Ltd.",
[651] = "Fife Corporation",
[652] = "Shanghai Electrical Apparatus Research Institute",
[653] = "Reserved",
[654] = "Parasense Development Centre",
[655] = "Reserved",
[656] = "Reserved",
[657] = "Six Tau S.p.A.",
[658] = "Aucos GmbH",
[659] = "Rotork Controls",
[660] = "Automationdirect.com",
[661] = "Thermo BLH",
[662] = "System ControlsLtd.",
[663] = "Univer S.p.A.",
[664] = "MKS-Tenta Technology",
[665] = "Lika Electronic SNC",
[666] = "Mettler-Toledo Inc.",
[667] = "DXL USA Inc.",
[668] = "Rockwell Automation/Entek IRD Intl.",
[669] = "Nippon Otis Elevator Company",
[670] = "Sinano Electric] = Co.Ltd.",
[671] = "Sony Manufacturing Systems",
[672] = "Reserved",
[673] = "Contec Co.Ltd.",
[674] = "Automated Solutions",
[675] = "Controlweigh",
[676] = "Reserved",
[677] = "Fincor Electronics",
[678] = "Cognex Corporation",
[679] = "Qualiflow",
[680] = "Weidmuller Inc.",
[681] = "Morinaga Milk Industry Co.Ltd.",
[682] = "Takagi Industrial Co.Ltd.",
[683] = "Wittenstein AG",
[684] = "Sena Technologies Inc.",
[685] = "Reserved",
[686] = "APV Products Unna",
[687] = "Creator Teknisk Utvedkling AB",
[688] = "Reserved",
[689] = "Mibu Denki Industrial Co.Ltd.",
[690] = "Takamastsu Machineer Section",
[691] = "Startco Engineering Ltd.",
[692] = "Reserved",
[693] = "Holjeron",
[694] = "ALCATEL High Vacuum Technology",
[695] = "Taesan LCD Co.Ltd.",
[696] = "POSCON",
[697] = "VMIC",
[698] = "Matsushita Electric WorksLtd.",
[699] = "IAI Corporation",
[700] = "Horst GmbH",
[701] = "MicroControl GmbH & Co.",
[702] = "Leine & Linde AB",
[703] = "Reserved",
[704] = "EC Elettronica Srl",
[705] = "VIT Software HB",
[706] = "Bronkhorst High-Tech B.V.",
[707] = "Optex Co.Ltd.",
[708] = "Yosio Electronic Co.",
[709] = "Terasaki Electric Co.Ltd.",
[710] = "Sodick Co.Ltd.",
[711] = "MTS Systems Corporation-Automation Division",
[712] = "Mesa Systemtechnik",
[713] = "SHIN HO SYSTEM Co.Ltd.",
[714] = "Goyo Electronics CoLtd.",
[715] = "Loreme",
[716] = "SAB Brockskes GmbH & Co. KG",
[717] = "Trumpf Laser GmbH + Co. KG",
[718] = "Niigata Electronic Instruments Co.Ltd.",
[719] = "Yokogawa Digital Computer Corporation",
[720] = "O.N. Electronic Co.Ltd.",
[721] = "Industrial Control Communication Inc.",
[722] = "ABB Inc.",
[723] = "ElectroWave USA Inc.",
[724] = "Industrial Network Controls] = LLC",
[725] = "KDT Systems Co.Ltd.",
[726] = "SEFA Technology Inc.",
[727] = "Nippon POP Rivets and Fasteners Ltd.",
[728] = "Yamato Scale Co.Ltd.",
[729] = "Zener Electric",
[730] = "GSE Scale Systems",
[731] = "ISAS (Integrated Switchgear & Sys. Pty Ltd)",
[732] = "Beta LaserMike Limited",
[733] = "TOEI Electric Co.Ltd.",
[734] = "Hakko Electronics Co.Ltd",
[735] = "Reserved",
[736] = "RFID Inc.",
[737] = "Adwin Corporation",
[738] = "Osaka VacuumLtd.",
[739] = "A-Kyung Motion Inc.",
[740] = "Camozzi S.P. A.",
[741] = "Crevis Co.] = LTD",
[742] = "Rice Lake Weighing Systems",
[743] = "Linux Network Services",
[744] = "KEB Antriebstechnik GmbH",
[745] = "Hagiwara Electric Co.Ltd.",
[746] = "Glass Inc. International",
[747] = "Reserved",
[748] = "DVT Corporation",
[749] = "Woodward Governor",
[750] = "Mosaic Systems Inc.",
[751] = "Laserline GmbH",
[752] = "COM-TEC Inc.",
[753] = "Weed Instrument",
[754] = "Prof-face European Technology Center",
[755] = "Fuji Automation Co.Ltd.",
[756] = "Matsutame Co.Ltd.",
[757] = "Hitachi Via MechanicsLtd.",
[758] = "Dainippon Screen Mfg. Co. Ltd.",
[759] = "FLS Automation A/S",
[760] = "ABB Stotz Kontakt GmbH",
[761] = "Technical Marine Service",
[762] = "Advanced Automation Associates Inc.",
[763] = "Baumer Ident GmbH",
[764] = "Tsubakimoto Chain Co.",
[765] = "Reserved",
[766] = "Furukawa Co.Ltd.",
[767] = "Active Power",
[768] = "CSIRO Mining Automation",
[769] = "Matrix Integrated Systems",
[770] = "Digitronic Automationsanlagen GmbH",
[771] = "SICK STEGMANN Inc.",
[772] = "TAE-Antriebstechnik GmbH",
[773] = "Electronic Solutions",
[774] = "Rocon L.L.C.",
[775] = "Dijitized Communications Inc.",
[776] = "Asahi Organic Chemicals Industry Co.Ltd.",
[777] = "Hodensha",
[778] = "Harting Inc. NA",
[779] = "Kubler GmbH",
[780] = "Yamatake Corporation",
[781] = "JEOL",
[782] = "Yamatake Industrial Systems Co.Ltd.",
[783] = "HAEHNE Elektronische Messgerate GmbH",
[784] = "Ci Technologies Pty Ltd (for Pelamos Industries)",
[785] = "N. SCHLUMBERGER & CIE",
[786] = "Teijin Seiki Co.Ltd.",
[787] = "DAIKIN IndustriesLtd",
[788] = "RyuSyo Industrial Co.Ltd.",
[789] = "SAGINOMIYA SEISAKUSHO] = INC.",
[790] = "Seishin Engineering Co.Ltd.",
[791] = "Japan Support System Ltd.",
[792] = "Decsys",
[793] = "Metronix Messgerate u. Elektronik GmbH",
[794] = "Reserved",
[795] = "Vaccon Company Inc.",
[796] = "Siemens Energy & Automation Inc.",
[797] = "Ten X Technology Inc.",
[798] = "Tyco Electronics",
[799] = "Delta Power Electronics Center",
[800] = "Denker",
[801] = "Autonics Corporation",
[802] = "JFE Electronic Engineering Pty. Ltd.",
[803] = "Reserved",
[804] = "Electro-Sensors Inc.",
[805] = "Digi International Inc.",
[806] = "Texas Instruments",
[807] = "ADTEC Plasma Technology Co.Ltd",
[808] = "SICK AG",
[809] = "Ethernet Peripherals Inc.",
[810] = "Animatics Corporation",
[811] = "Reserved",
[812] = "Process Control Corporation",
[813] = "SystemV. Inc.",
[814] = "Danaher Motion SRL",
[815] = "SHINKAWA Sensor Technology Inc.",
[816] = "Tesch GmbH & Co. KG",
[817] = "Reserved",
[818] = "Trend Controls Systems Ltd.",
[819] = "Guangzhou ZHIYUAN Electronic Co.Ltd.",
[820] = "Mykrolis Corporation",
[821] = "Bethlehem Steel Corporation",
[822] = "KK ICP",
[823] = "Takemoto Denki Corporation",
[824] = "The Montalvo Corporation",
[825] = "Reserved",
[826] = "LEONI Special Cables GmbH",
[827] = "Reserved",
[828] = "ONO SOKKI CO.,LTD.",
[829] = "Rockwell Samsung Automation",
[830] = "SHINDENGEN ELECTRIC MFG. CO. LTD",
[831] = "Origin Electric Co. Ltd.",
[832] = "Quest Technical Solutions Inc.",
[833] = "LS CableLtd.",
[834] = "Enercon-Nord Electronic GmbH",
[835] = "Northwire Inc.",
[836] = "Engel Elektroantriebe GmbH",
[837] = "The Stanley Works",
[838] = "Celesco Transducer Products Inc.",
[839] = "Chugoku Electric Wire and Cable Co.",
[840] = "Kongsberg Simrad AS",
[841] = "Panduit Corporation",
[842] = "Spellman High Voltage Electronics Corp.",
[843] = "Kokusai Electric Alpha Co.Ltd.",
[844] = "Brooks Automation Inc.",
[845] = "ANYWIRE CORPORATION",
[846] = "Honda Electronics Co. Ltd",
[847] = "REO Elektronik AG",
[848] = "Fusion UV Systems Inc.",
[849] = "ASI Advanced Semiconductor Instruments GmbH",
[850] = "Datalogic Inc.",
[851] = "SoftPLC Corporation",
[852] = "Dynisco Instruments LLC",
[853] = "WEG Industrias SA",
[854] = "Frontline Test Equipment Inc.",
[855] = "Tamagawa Seiki Co.Ltd.",
[856] = "Multi Computing Co.Ltd.",
[857] = "RVSI",
[858] = "Commercial Timesharing Inc.",
[859] = "Tennessee Rand Automation LLC",
[860] = "Wacogiken Co.Ltd",
[861] = "Reflex Integration Inc.",
[862] = "Siemens AG] = A&D PI Flow Instruments",
[863] = "G. Bachmann Electronic GmbH",
[864] = "NT International",
[865] = "Schweitzer Engineering Laboratories",
[866] = "ATR Industrie-Elektronik GmbH Co.",
[867] = "PLASMATECH Co.Ltd",
[868] = "Reserved",
[869] = "GEMU GmbH & Co. KG",
[870] = "Alcorn McBride Inc.",
[871] = "MORI SEIKI CO.] = LTD",
[872] = "NodeTech Systems Ltd",
[873] = "Emhart Teknologies",
[874] = "Cervis Inc.",
[875] = "FieldServer Technologies (Div Sierra Monitor Corp)",
[876] = "NEDAP Power Supplies",
[877] = "Nippon Sanso Corporation",
[878] = "Mitomi Giken Co.Ltd.",
[879] = "PULS GmbH",
[880] = "Reserved",
[881] = "Japan Control Engineering Ltd",
[882] = "Embedded Systems Korea (Former Zues Emtek Co Ltd.)",
[883] = "Automa SRL",
[884] = "Harms+Wende GmbH & Co KG",
[885] = "SAE-STAHL GmbH",
[886] = "Microwave Data Systems",
[887] = "Bernecker + Rainer Industrie-Elektronik GmbH",
[888] = "Hiprom Technologies",
[889] = "Reserved",
[890] = "Nitta Corporation",
[891] = "Kontron Modular Computers GmbH",
[892] = "Marlin Controls",
[893] = "ELCIS s.r.l.",
[894] = "Acromag Inc.",
[895] = "Avery Weigh-Tronix",
[896] = "Reserved",
[897] = "Reserved",
[898] = "Reserved",
[899] = "Practicon Ltd",
[900] = "Schunk GmbH & Co. KG",
[901] = "MYNAH Technologies",
[902] = "Defontaine Groupe",
[903] = "Emerson Process Management Power & Water Solutions",
[904] = "F.A. Elec",
[905] = "Hottinger Baldwin Messtechnik GmbH",
[906] = "Coreco Imaging Inc.",
[907] = "London Electronics Ltd.",
[908] = "HSD SpA",
[909] = "Comtrol Corporation",
[910] = "TEAM] = S.A. (Tecnica Electronica de Automatismo Y Medida)",
[911] = "MAN B&W Diesel Ltd. Regulateurs Europa",
[912] = "Reserved",
[913] = "Reserved",
[914] = "Micro Motion Inc.",
[915] = "Eckelmann AG",
[916] = "Hanyoung Nux",
[917] = "Ransburg Industrial Finishing KK",
[918] = "Kun Hung Electric Co. Ltd.",
[919] = "Brimos wegbebakening b.v.",
[920] = "Nitto Seiki Co.Ltd",
[921] = "PPT Vision Inc.",
[922] = "Yamazaki Machinery Works",
[923] = "SCHMIDT Technology GmbH",
[924] = "Parker Hannifin SpA (SBC Division)",
[925] = "HIMA Paul Hildebrandt GmbH",
[926] = "RivaTek Inc.",
[927] = "Misumi Corporation",
[928] = "GE Multilin",
[929] = "Measurement Computing Corporation",
[930] = "Jetter AG",