forked from JustinTimperio/gomap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gomap_ports.go
3317 lines (3315 loc) · 86.6 KB
/
gomap_ports.go
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
package gomap
var commonlist = map[int]string{
7: "echo",
20: "ftp",
21: "ftp",
22: "ssh",
23: "telnet",
25: "smtp",
43: "whois",
50: "IPSec",
51: "IPSec",
53: "dns",
67: "dhcp",
68: "dhcp",
69: "TFTP",
80: "http",
88: "kerberos",
110: "pop3",
111: "rpc",
115: "sftp",
119: "nntp",
123: "ntp",
137: "netbios",
138: "netbios",
139: "netbios",
143: "imap4",
156: "sql server",
161: "SNMP",
162: "SNMP",
389: "LDAP",
443: "https",
513: "rlogin",
540: "uucp",
546: "dhcpv6",
547: "dhcpv6",
554: "rtsp",
587: "smtp",
873: "rsync",
902: "vmware",
989: "ftps",
990: "ftps",
1194: "openvpn",
1725: "steam",
1812: "radius",
1813: "radius",
2049: "NFS",
2082: "cpanel",
2083: "cpanel",
3306: "mysql",
3389: "RDP",
5000: "unpn",
5432: "psql",
5500: "vnc server",
5900: "vnc server",
5938: "teamviewer",
8000: "http-alt",
8080: "https-proxy",
8333: "VMware Web Access",
8443: "https-alt",
8998: "I2P",
9030: "Tor",
9050: "Tor",
9051: "Tor",
9150: "Tor Browser",
9200: "elasticsearch",
9418: "git",
9987: "Teamspeak 3 voice",
19999: "DNP",
23399: "Skype",
25565: "minecraft",
27017: "MongoDB",
28015: "Rust (Video Game)",
43594: "runescape",
43595: "runescape",
}
var detailedlist = map[int]string{
// Custom Ports
5550: "vnc server",
5938: "teamviewer",
25565: "minecraft",
24800: "synergy",
//
1: "Port Service Multiplexer",
2: "Management Utility",
3: "Compression Process",
4: "Unassigned",
5: "Remote Job Entry",
7: "Echo",
9: "Discard",
11: "Active Users",
13: "Daytime (RFC 867)",
17: "Quote of the Day",
18: "Message Send Protocol",
19: "Character Generator",
20: "File Transfer [Default Data]",
21: "File Transfer [Control]",
22: "SSH Remote Login Protocol",
23: "Telnet",
24: "any private mail system",
25: "Simple Mail Transfer",
27: "NSW User System FE",
29: "MSG ICP",
31: "MSG Authentication",
33: "Display Support Protocol",
35: "any private printer server",
37: "Time / W32.Sober.I virus",
38: "Route Access Protocol",
39: "Resource Location Protocol",
42: "Host Name Server",
43: "WhoIs",
44: "MPM FLAGS Protocol",
45: "Message Processing Module [recv]",
46: "MPM [default send]",
47: "NI FTP",
48: "Digital Audit Daemon",
49: "Login Host Protocol (TACACS)",
50: "Remote Mail Checking Protocol",
51: "IMP Logical Address Maintenance",
52: "XNS Time Protocol",
53: "Domain Name Server",
54: "XNS Clearinghouse",
55: "ISI Graphics Language",
56: "XNS Authentication",
57: "any private terminal access",
58: "XNS Mail",
59: "any private file service",
60: "Unassigned",
61: "NI MAIL",
62: "ACA Services",
63: "whois++",
64: "Communications Integrator (CI)",
65: "TACACS-Database Service",
66: "Oracle SQL*NET",
67: "Bootstrap Protocol Server",
68: "Bootstrap Protocol Client",
69: "Trivial File Transfer",
70: "Gopher",
71: "Remote Job Service",
72: "Remote Job Service",
73: "Remote Job Service",
74: "Remote Job Service",
75: "any private dial out service",
76: "Distributed External Object Store",
77: "any private RJE service",
78: "vettcp",
79: "Finger",
80: "World Wide Web HTTP",
81: "HOSTS2 Name Server / Bagle-AZ worm / Win32.Rbot worm",
82: "XFER Utility",
83: "MIT ML Device",
84: "Common Trace Facility",
85: "MIT ML Device",
86: "Micro Focus Cobol",
87: "any private terminal link",
88: "Kerberos",
89: "SU/MIT Telnet Gateway",
90: "DNSIX Securit Attribute Token Map",
91: "MIT Dover Spooler",
92: "Network Printing Protocol",
93: "Device Control Protocol",
94: "Tivoli Object Dispatcher",
95: "SUPDUP",
96: "DIXIE Protocol Specification",
97: "Swift Remote Virtural File Protocol",
98: "Linuxconf / TAC News",
99: "Metagram Relay",
100: "[unauthorized use]",
101: "NIC Host Name Server",
102: "MSExchangeMTA X.400 / ISO-TSAP Class 0",
103: "Genesis Point-to-Point Trans Net",
104: "ACR-NEMA Digital Imag. & Comm. 300",
105: "Mailbox Name Nameserver",
106: "3COM-TSMUX",
107: "Remote Telnet Service",
108: "SNA Gateway Access Server",
109: "Post Office Protocol - Version 2",
110: "Post Office Protocol - Version 3",
111: "SUN Remote Procedure Call",
112: "McIDAS Data Transmission Protocol",
113: "Authentication Service",
114: "Audio News Multicast",
115: "Simple File Transfer Protocol",
116: "ANSA REX Notify",
117: "UUCP Path Service",
118: "SQL Services",
119: "Network News Transfer Protocol",
120: "CFDPTKT",
121: "Encore Expedited Remote Pro.Call",
122: "SMAKYNET",
123: "Network Time Protocol",
124: "ANSA REX Trader",
125: "Locus PC-Interface Net Map Ser",
126: "Unisys Unitary Login",
127: "Locus PC-Interface Conn Server",
128: "GSS X License Verification",
129: "Password Generator Protocol",
130: "cisco FNATIVE",
131: "cisco TNATIVE",
132: "cisco SYSMAINT",
133: "Statistics Service",
134: "INGRES-NET Service",
135: "DCE endpoint resolution",
136: "PROFILE Naming System",
137: "NETBIOS Name Service",
138: "NETBIOS Datagram Service",
139: "NETBIOS Session Service",
140: "EMFIS Data Service",
141: "EMFIS Control Service",
142: "Britton-Lee IDM",
143: "Internet Message Access Protocol",
144: "Universal Management Architecture",
145: "UAAC Protocol",
146: "ISO-IP0",
147: "ISO-IP",
148: "Jargon",
149: "AED 512 Emulation Service",
150: "SQL-NET",
151: "HEMS",
152: "Background File Transfer Program",
153: "SGMP",
154: "NETSC",
155: "NETSC",
156: "SQL Service",
157: "KNET/VM Command/Message Protocol",
158: "PCMail Server",
159: "NSS-Routing",
160: "SGMP-TRAPS",
161: "SNMP",
162: "SNMPTRAP",
163: "CMIP/TCP Manager",
164: "CMIP/TCP Agent",
165: "Xerox",
166: "Sirius Systems",
167: "NAMP",
168: "RSVD",
169: "SEND",
170: "Network PostScript",
171: "Network Innovations Multiplex",
172: "Network Innovations CL/1",
173: "Xyplex",
174: "MAILQ",
175: "VMNET",
176: "GENRAD-MUX",
177: "X Display Manager Control Protocol",
178: "NextStep Window Server",
179: "Border Gateway Protocol",
180: "Intergraph",
181: "Unify",
182: "Unisys Audit SITP",
183: "OCBinder",
184: "OCServer",
185: "Remote-KIS",
186: "KIS Protocol",
187: "Application Communication Interface",
188: "Plus Five's MUMPS",
189: "Queued File Transport",
190: "Gateway Access Control Protocol",
191: "Prospero Directory Service",
192: "OSU Network Monitoring System",
193: "Spider Remote Monitoring Protocol",
194: "Internet Relay Chat Protocol",
195: "DNSIX Network Level Module Audit",
196: "DNSIX Session Mgt Module Audit Redir",
197: "Directory Location Service",
198: "Directory Location Service Monitor",
199: "SMUX",
200: "IBM System Resource Controller",
201: "AppleTalk Routing Maintenance",
202: "AppleTalk Name Binding",
203: "AppleTalk Unused",
204: "AppleTalk Echo",
205: "AppleTalk Unused",
206: "AppleTalk Zone Information",
207: "AppleTalk Unused",
208: "AppleTalk Unused",
209: "The Quick Mail Transfer Protocol",
210: "ANSI Z39.50",
211: "Texas Instruments 914C/G Terminal",
212: "ATEXSSTR",
213: "IPX",
214: "VM PWSCS",
215: "Insignia Solutions",
216: "Computer Associates Int'l License Server",
217: "dBASE Unix",
218: "Netix Message Posting Protocol",
219: "Unisys ARPs",
220: "Interactive Mail Access Protocol v3",
221: "Berkeley rlogind with SPX auth",
222: "Berkeley rshd with SPX auth",
223: "Certificate Distribution Center",
224: "masqdialer",
242: "Direct",
243: "Survey Measurement",
244: "inbusiness",
245: "LINK",
246: "Display Systems Protocol",
247: "SUBNTBCST_TFTP",
248: "bhfhs",
256: "RAP/Checkpoint SNMP",
257: "Check Point / Secure Electronic Transaction",
258: "Check Point / Yak Winsock Personal Chat",
259: "Check Point Firewall-1 telnet auth / Efficient Short Remote Operations",
260: "Openport",
261: "IIOP Name Service over TLS/SSL",
262: "Arcisdms",
263: "HDAP",
264: "BGMP / Check Point",
265: "X-Bone CTL",
266: "SCSI on ST",
267: "Tobit David Service Layer",
268: "Tobit David Replica",
280: "HTTP-mgmt",
281: "Personal Link",
282: "Cable Port A/X",
283: "rescap",
284: "corerjd",
286: "FXP-1",
287: "K-BLOCK",
308: "Novastor Backup",
309: "EntrustTime",
310: "bhmds",
311: "AppleShare IP WebAdmin",
312: "VSLMP",
313: "Magenta Logic",
314: "Opalis Robot",
315: "DPSI",
316: "decAuth",
317: "Zannet",
318: "PKIX TimeStamp",
319: "PTP Event",
320: "PTP General",
321: "PIP",
322: "RTSPS",
333: "Texar Security Port",
344: "Prospero Data Access Protocol",
345: "Perf Analysis Workbench",
346: "Zebra server",
347: "Fatmen Server",
348: "Cabletron Management Protocol",
349: "mftp",
350: "MATIP Type A",
351: "bhoetty (added 5/21/97)",
352: "bhoedap4 (added 5/21/97)",
353: "NDSAUTH",
354: "bh611",
355: "DATEX-ASN",
356: "Cloanto Net 1",
357: "bhevent",
358: "Shrinkwrap",
359: "Tenebris Network Trace Service",
360: "scoi2odialog",
361: "Semantix",
362: "SRS Send",
363: "RSVP Tunnel",
364: "Aurora CMGR",
365: "DTK",
366: "ODMR",
367: "MortgageWare",
368: "QbikGDP",
369: "rpc2portmap",
370: "codaauth2",
371: "Clearcase",
372: "ListProcessor",
373: "Legent Corporation",
374: "Legent Corporation",
375: "Hassle",
376: "Amiga Envoy Network Inquiry Proto",
377: "NEC Corporation",
378: "NEC Corporation",
379: "TIA/EIA/IS-99 modem client",
380: "TIA/EIA/IS-99 modem server",
381: "hp performance data collector",
382: "hp performance data managed node",
383: "hp performance data alarm manager",
384: "A Remote Network Server System",
385: "IBM Application",
386: "ASA Message Router Object Def.",
387: "Appletalk Update-Based Routing Pro.",
388: "Unidata LDM",
389: "Lightweight Directory Access Protocol / Internet Locator Service (ILS)",
390: "UIS",
391: "SynOptics SNMP Relay Port",
392: "SynOptics Port Broker Port",
393: "Data Interpretation System",
394: "EMBL Nucleic Data Transfer",
395: "NETscout Control Protocol",
396: "Novell Netware over IP",
397: "Multi Protocol Trans. Net.",
398: "Kryptolan",
399: "ISO Transport Class 2 Non-Control over TCP",
400: "Workstation Solutions",
401: "Uninterruptible Power Supply",
402: "Genie Protocol",
403: "decap",
404: "nced",
405: "ncld",
406: "Interactive Mail Support Protocol",
407: "Timbuktu",
408: "Prospero Resource Manager Sys. Man.",
409: "Prospero Resource Manager Node Man.",
410: "DECLadebug Remote Debug Protocol",
411: "Remote MT Protocol",
412: "NeoModus Direct Connect (Windows file sharing program) / Trap Convention Port",
413: "SMSP",
414: "InfoSeek",
415: "BNet",
416: "Silverplatter",
417: "Onmux",
418: "Hyper-G",
419: "Ariel",
420: "SMPTE",
421: "Ariel",
422: "Ariel",
423: "IBM Operations Planning and Control Start",
424: "IBM Operations Planning and Control Track",
425: "ICAD",
426: "smartsdp",
427: "Server Location",
428: "OCS_CMU",
429: "OCS_AMU",
430: "UTMPSD",
431: "UTMPCD",
432: "IASD",
433: "NNSP",
434: "MobileIP-Agent",
435: "MobilIP-MN",
436: "DNA-CML",
437: "comscm",
438: "dsfgw",
439: "dasp",
440: "sgcp",
441: "decvms-sysmgt",
442: "cvc_hostd",
443: "HTTP protocol over TLS/SSL",
444: "Simple Network Paging Protocol",
445: "Microsoft-DS",
446: "DDM-RDB",
447: "DDM-RFM",
448: "DDM-SSL",
449: "AS Server Mapper",
450: "TServer",
451: "Cray Network Semaphore server",
452: "Cray SFS config server",
453: "CreativeServer",
454: "ContentServer",
455: "CreativePartnr",
456: "macon-tcp",
457: "scohelp",
458: "apple quick time",
459: "ampr-rcmd",
460: "skronk",
461: "DataRampSrv",
462: "DataRampSrvSec",
463: "alpes",
464: "kpasswd",
465: "SMTPS",
466: "digital-vrc",
467: "mylex-mapd",
468: "proturis",
469: "Radio Control Protocol",
470: "scx-proxy",
471: "Mondex",
472: "ljk-login",
473: "hybrid-pop",
474: "tn-tl-w1",
475: "tcpnethaspsrv",
476: "tn-tl-fd1",
477: "ss7ns",
478: "spsc",
479: "iafserver",
480: "iafdbase",
481: "Ph service",
482: "bgs-nsi",
483: "ulpnet",
484: "Integra Software Management Environment",
485: "Air Soft Power Burst",
486: "avian",
487: "saft Simple Asynchronous File Transfer",
488: "gss-HTTP",
489: "nest-protocol",
490: "micom-pfs",
491: "go-login",
492: "Transport Independent Convergence for FNA",
493: "Transport Independent Convergence for FNA",
494: "POV-Ray",
495: "intecourier",
496: "PIM-RP-DISC",
497: "dantz",
498: "siam",
499: "ISO ILL Protocol",
500: "ISAKMP",
501: "STMF",
502: "asa-appl-proto",
503: "Intrinsa",
504: "citadel",
505: "mailbox-lm",
506: "ohimsrv",
507: "crs",
508: "xvttp",
509: "snare",
510: "FirstClass Protocol",
511: "PassGo",
512: "Remote process execution",
513: "Remote Login",
514: "Remote Shell",
515: "spooler",
516: "videotex",
517: "like tenex link but across",
518: "talkd",
519: "unixtime",
520: "extended file name server",
521: "ripng",
522: "User Location Service / ULP",
523: "IBM-DB2",
524: "NCP",
525: "timeserver",
526: "newdate",
527: "Stock IXChange",
528: "Customer IXChange",
529: "IRC-SERV",
530: "rpc",
531: "chat",
532: "readnews",
533: "for emergency broadcasts",
534: "MegaMedia Admin",
535: "iiop",
536: "opalis-rdv",
537: "Networked Media Streaming Protocol",
538: "gdomap",
539: "Apertus Technologies Load Determination",
540: "uucpd",
541: "uucp-rlogin",
542: "commerce",
543: "kerberos (v4/v5)",
544: "krcmd",
545: "appleqtcsrvr",
546: "DHCPv6 Client",
547: "DHCPv6 Server",
548: "AppleShare AFP over TCP",
549: "IDFP",
550: "new-who",
551: "cybercash",
552: "deviceshare",
553: "pirp",
554: "Real Time Stream Control Protocol",
555: "phAse Zero backdoor (Win 9x, NT) / dsf",
556: "rfs server",
557: "openvms-sysipc",
558: "SDNSKMP",
559: "TEEDTAP / Backdoor.Domwis Win32 trojan",
560: "rmonitord",
561: "monitor",
562: "chcmd",
563: "AOL IM / NNTP protocol over TLS/SSL",
564: "plan 9 file service",
565: "whoami",
566: "streettalk",
567: "banyan-rpc",
568: "microsoft shuttle",
569: "microsoft rome",
570: "demon",
571: "udemon",
572: "sonar",
573: "banyan-vip",
574: "FTP Software Agent System",
575: "VEMMI",
576: "ipcd",
577: "vnas",
578: "ipdd",
579: "decbsrv",
580: "SNTP HEARTBEAT",
581: "Bundle Discovery Protocol",
582: "SCC Security",
583: "Philips Video-Conferencing",
584: "Key Server",
585: "IMAP4+SSL",
586: "Password Change",
587: "Message Submission (Sendmail)",
588: "CAL",
589: "EyeLink",
590: "TNS CML",
591: "FileMaker Inc. - HTTP Alternate",
592: "Eudora Set",
593: "HTTP RPC Ep Map",
594: "TPIP",
595: "CAB Protocol",
596: "SMSD",
597: "PTC Name Service",
598: "SCO Web Server Manager 3",
599: "Aeolon Core Protocol",
600: "Sun IPC server",
606: "Cray Unified Resource Manager",
607: "nqs",
608: "Sender-Initiated/Unsolicited File Transfer",
609: "npmp-trap",
610: "Apple Admin Service / npmp-local",
611: "npmp-gui",
612: "HMMP Indication",
613: "HMMP Operation",
614: "SSLshell",
615: "Internet Configuration Manager",
616: "SCO System Administration Server",
617: "SCO Desktop Administration Server",
618: "DEI-ICDA",
619: "Digital EVM",
620: "SCO WebServer Manager",
621: "ESCP",
622: "Collaborator",
623: "Aux Bus Shunt",
624: "Crypto Admin",
625: "DEC DLM",
626: "ASIA",
627: "PassGo Tivoli",
628: "QMQP",
629: "3Com AMP3",
630: "RDA",
631: "IPP (Internet Printing Protocol)",
632: "bmpp",
633: "Service Status update (Sterling Software)",
634: "ginad",
635: "RLZ DBase",
636: "LDAP protocol over TLS/SSL",
637: "lanserver",
638: "mcns-sec",
639: "MSDP",
640: "entrust-sps",
641: "repcmd",
642: "ESRO-EMSDP V1.3",
643: "SANity",
644: "dwr",
645: "PSSC",
646: "LDP",
647: "DHCP Failover",
648: "Registry Registrar Protocol (RRP)",
649: "Aminet",
650: "OBEX",
651: "IEEE MMS",
652: "UDLR_DTCP",
653: "RepCmd",
654: "AODV",
655: "TINC",
656: "SPMP",
657: "RMC",
658: "TenFold",
659: "URL Rendezvous",
660: "MacOS Server Admin",
661: "HAP",
662: "PFTP",
663: "PureNoise",
664: "Secure Aux Bus",
665: "Sun DR",
666: "doom Id Software",
667: "campaign contribution disclosures - SDR Technologies",
668: "MeComm",
669: "MeRegister",
670: "VACDSM-SWS",
671: "VACDSM-APP",
672: "VPPS-QUA",
673: "CIMPLEX",
674: "ACAP",
675: "DCTP",
676: "VPPS Via",
677: "Virtual Presence Protocol",
678: "GNU Gereration Foundation NCP",
679: "MRM",
680: "entrust-aaas",
681: "entrust-aams",
682: "XFR",
683: "CORBA IIOP",
684: "CORBA IIOP SSL",
685: "MDC Port Mapper",
686: "Hardware Control Protocol Wismar",
687: "asipregistry",
688: "REALM-RUSD",
689: "NMAP",
690: "VATP",
691: "MS Exchange Routing",
692: "Hyperwave-ISP",
693: "connendp",
694: "ha-cluster",
695: "IEEE-MMS-SSL",
696: "RUSHD",
697: "UUIDGEN",
698: "OLSR",
704: "errlog copy/server daemon",
705: "AgentX",
706: "SILC",
707: "W32.Nachi Worm / Borland DSJ",
709: "Entrust Key Management Service Handler",
710: "Entrust Administration Service Handler",
711: "Cisco TDP",
729: "IBM NetView DM/6000 Server/Client",
730: "IBM NetView DM/6000 send/tcp",
731: "IBM NetView DM/6000 receive/tcp",
740: "(old) NETscout Control Protocol (old)",
741: "netGW",
742: "Network based Rev. Cont. Sys.",
744: "Flexible License Manager",
747: "Fujitsu Device Control",
748: "Russell Info Sci Calendar Manager",
749: "kerberos administration",
750: "rfile",
751: "pump",
752: "Kerberos password server",
753: "Kerberos userreg server",
754: "send",
758: "nlogin",
759: "con",
760: "kreg, kerberos/4 registration",
761: "kpwd, Kerberos/4 password",
762: "quotad",
763: "cycleserv",
764: "omserv",
765: "webster",
767: "phone",
769: "vid",
770: "cadlock",
771: "rtip",
772: "cycleserv2",
773: "submit",
774: "rpasswd",
775: "entomb",
776: "wpages",
777: "Multiling HTTP",
780: "wpgs",
781: "HP performance data collector",
782: "node HP performance data managed node",
783: "HP performance data alarm manager",
786: "Concert",
787: "QSC",
799: "ControlIT / Remotely Possible",
800: "mdbs_daemon / Remotely Possible",
801: "device",
808: "CCProxy",
810: "FCP",
828: "itm-mcell-s",
829: "PKIX-3 CA/RA",
871: "SUP server",
873: "rsync",
886: "ICL coNETion locate server",
887: "ICL coNETion server info",
888: "CD Database Protocol",
900: "Check Point Firewall-1 HTTP administration / OMG Initial Refs",
901: "Samba Web Administration Tool / Realsecure / SMPNAMERES/ NetDevil trojan",
902: "VMware Authentication Daemon / IDEAFARM-CHAT",
903: "IDEAFARM-CATCH / NetDevil trojan",
911: "xact-backup",
912: "VMware Authentication Daemon",
989: "FTP protocol data over TLS/SSL",
990: "FTP protocol control over TLS/SSL",
991: "Netnews Administration System",
992: "Telnet protocol over TLS/SSL",
993: "IMAP4 protocol over TLS/SSL",
994: "IRC protocol over TLS/SSL",
995: "POP3 protocol over TLS/SSL",
996: "vsinet",
997: "maitrd",
998: "busboy",
999: "puprouter",
1000: "cadlock",
1002: "Microsoft Site Server Internet Locator Service (Netmeeting/ICF)",
1008: "UFS-aware server",
1010: "surf",
1011: "Doly (Windows Trojan)",
1015: "Doly (Windows Trojan)",
1023: "Reserved",
1024: "Reserved",
1025: "MSTASK / network blackjack",
1026: "MSTASK / Remote Login Network Terminal",
1030: "BBN IAD",
1031: "InetInfo / BBN IAD",
1032: "BBN IAD",
1042: "W32.Mydoom.L virus",
1047: "Sun's NEO Object Request Broker",
1048: "Sun's NEO Object Request Broker",
1049: "Tobit David Postman VPMN",
1050: "CORBA Management Agent",
1051: "Optima VNET",
1052: "Dynamic DNS Tools",
1053: "Remote Assistant (RA)",
1054: "BRVREAD",
1055: "ANSYS - License Manager",
1056: "VFO",
1057: "STARTRON",
1058: "nim",
1059: "nimreg",
1060: "POLESTAR",
1061: "KIOSK",
1062: "Veracity",
1063: "KyoceraNetDev",
1064: "JSTEL",
1065: "SYSCOMLAN",
1066: "FPO-FNS",
1067: "Installation Bootstrap Proto. Serv.",
1068: "Installation Bootstrap Proto. Cli.",
1069: "COGNEX-INSIGHT",
1070: "GMRUpdateSERV",
1071: "BSQUARE-VOIP",
1072: "CARDAX",
1073: "BridgeControl",
1074: "FASTechnologies License Manager",
1075: "RDRMSHC",
1076: "DAB STI-C",
1077: "IMGames",
1078: "eManageCstp",
1079: "ASPROVATalk",
1080: "Socks / W32.Beagle.AB trojan",
1081: "PVUNIWIEN",
1082: "AMT-ESD-PROT",
1083: "Anasoft License Manager",
1084: "Anasoft License Manager",
1085: "Web Objects",
1086: "CPL Scrambler Logging",
1087: "CPL Scrambler Internal",
1088: "CPL Scrambler Alarm Log",
1089: "FF Annunciation",
1090: "FF Fieldbus Message Specification",
1091: "FF System Management",
1092: "OBRPD",
1093: "PROOFD",
1094: "ROOTD",
1095: "NICELink",
1096: "Common Name Resolution Protocol",
1097: "Sun Cluster Manager",
1098: "RMI Activation",
1099: "RMI Registry",
1100: "MCTP",
1101: "PT2-DISCOVER",
1102: "ADOBE SERVER 1",
1103: "ADOBE SERVER 2",
1104: "XRL",
1105: "FTRANHC",
1106: "ISOIPSIGPORT-1",
1107: "ISOIPSIGPORT-2",
1108: "ratio-adp",
1109: "Pop with Kerberos",
1110: "Cluster status info",
1111: "LM Social Server",
1112: "Intelligent Communication Protocol",
1114: "Mini SQL",
1115: "ARDUS Transfer",
1116: "ARDUS Control",
1117: "ARDUS Multicast Transfer",
1123: "Murray",
1127: "SUP debugging",
1155: "Network File Access",
1161: "Health Polling",
1162: "Health Trap",
1169: "TRIPWIRE",
1178: "SKK (kanji input)",
1180: "Millicent Client Proxy",
1188: "HP Web Admin",
1200: "SCOL",
1201: "Nucleus Sand",
1202: "caiccipc",
1203: "License Validation",
1204: "Log Request Listener",
1205: "Accord-MGC",
1206: "Anthony Data",
1207: "MetaSage",
1208: "SEAGULL AIS",
1209: "IPCD3",
1210: "EOSS",
1211: "Groove DPP",
1212: "lupa",
1213: "MPC LIFENET",
1214: "KAZAA (Morpheus)",
1215: "scanSTAT 1.0",
1216: "ETEBAC 5",
1217: "HPSS-NDAPI",
1218: "AeroFlight-ADs",
1219: "AeroFlight-Ret",
1220: "QT SERVER ADMIN",
1221: "SweetWARE Apps",
1222: "SNI R&D network",
1223: "TGP",
1224: "VPNz",
1225: "SLINKYSEARCH",
1226: "STGXFWS",
1227: "DNS2Go",
1228: "FLORENCE",
1229: "Novell ZFS",
1234: "W32.Beagle.Y trojan / Infoseek Search Agent",
1239: "NMSD",
1241: "Nessus Daemon / remote message service",
1243: "SubSeven (Windows Trojan)",
1245: "Subseven backdoor remote access tool",
1248: "hermes",
1270: "Microsoft Operations Manager MOM-Encrypted",
1300: "H323 Host Call Secure",
1310: "Husky",
1311: "RxMon",
1312: "STI Envision",
1313: "BMC_PATROLDB",
1314: "Photoscript Distributed Printing System",
1319: "Panja-ICSP",
1320: "Panja-AXBNET",
1321: "PIP",
1335: "Digital Notary Protocol",
1345: "VPJP",
1346: "Alta Analytics License Manager",
1347: "multi media conferencing",
1348: "multi media conferencing",
1349: "Registration Network Protocol",
1350: "Registration Network Protocol",
1351: "Digital Tool Works (MIT)",
1352: "Lotus Notes",
1353: "Relief Consulting",
1354: "RightBrain Software",
1355: "Intuitive Edge",
1356: "CuillaMartin Company",
1357: "Electronic PegBoard",
1358: "CONNLCLI",
1359: "FTSRV",
1360: "MIMER",
1361: "LinX",
1362: "TimeFlies",
1363: "Network DataMover Requester",
1364: "Network DataMover Server",
1365: "Network Software Associates",
1366: "Novell NetWare Comm Service Platform",
1367: "DCS",
1368: "ScreenCast",
1369: "GlobalView to Unix Shell",
1370: "Unix Shell to GlobalView",
1371: "Fujitsu Config Protocol",
1372: "Fujitsu Config Protocol",
1373: "Chromagrafx",
1374: "EPI Software Systems",
1375: "Bytex",
1376: "IBM Person to Person Software",
1377: "Cichlid License Manager",
1378: "Elan License Manager",
1379: "Integrity Solutions",
1380: "Telesis Network License Manager",
1381: "Apple Network License Manager",
1382: "udt_os",
1383: "GW Hannaway Network License Manager",
1384: "Objective Solutions License Manager",
1385: "Atex Publishing License Manager",
1386: "CheckSum License Manager",
1387: "Computer Aided Design Software Inc LM",
1388: "Objective Solutions DataBase Cache",
1389: "Document Manager",
1390: "Storage Controller",
1391: "Storage Access Server",
1392: "Print Manager",
1393: "Network Log Server",
1394: "Network Log Client",
1395: "PC Workstation Manager software",
1396: "DVL Active Mail",
1397: "Audio Active Mail",
1398: "Video Active Mail",
1399: "Cadkey License Manager",
1400: "Cadkey Tablet Daemon",
1401: "Goldleaf License Manager",
1402: "Prospero Resource Manager",
1403: "Prospero Resource Manager",
1404: "Infinite Graphics License Manager",
1405: "IBM Remote Execution Starter",
1406: "NetLabs License Manager",
1407: "DBSA License Manager",
1408: "Sophia License Manager",
1409: "Here License Manager",
1410: "HiQ License Manager",
1411: "AudioFile",
1412: "InnoSys",
1413: "Innosys-ACL",
1414: "IBM MQSeries",
1415: "DBStar",
1416: "Novell LU6.2",
1417: "Timbuktu Service 1 Port",
1418: "Timbuktu Service 2 Port",
1419: "Timbuktu Service 3 Port",
1420: "Timbuktu Service 4 Port",
1421: "Gandalf License Manager",
1422: "Autodesk License Manager",
1423: "Essbase Arbor Software",
1424: "Hybrid Encryption Protocol",
1425: "Zion Software License Manager",
1426: "Satellite-data Acquisition System 1",
1427: "mloadd monitoring tool",
1428: "Informatik License Manager",
1429: "Hypercom NMS",
1430: "Hypercom TPDU",
1431: "Reverse Gossip Transport",
1432: "Blueberry Software License Manager",
1433: "Microsoft-SQL-Server",
1434: "Microsoft-SQL-Monitor",
1435: "IBM CICS",
1436: "Satellite-data Acquisition System 2",
1437: "Tabula",
1438: "Eicon Security Agent/Server",
1439: "Eicon X25/SNA Gateway",
1440: "Eicon Service Location Protocol",
1441: "Cadis License Management",
1442: "Cadis License Management",
1443: "Integrated Engineering Software",