forked from walkerfunction/nmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nmap-rpc
1920 lines (1914 loc) · 48.4 KB
/
nmap-rpc
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
# $Id$ -*- mode: fundamental; -*-
#
# /***************************************************************************
# * nmap-rpc -- Known RPC numbers. Nmap uses them for RPC grinding. *
# * Thanks to Eilon Gishri, Vik Bajaj, Fyodor, and other members of *
# * the Nmap community for contributing entries. Someday we might *
# * reorder this with the most popular services first to make scans *
# * faster. *
# * *
# ***********************IMPORTANT NMAP LICENSE TERMS************************
# * *
# * The Nmap Security Scanner is (C) 1996-2010 Insecure.Com LLC. Nmap is *
# * also a registered trademark of Insecure.Com LLC. This program is free *
# * software; you may redistribute and/or modify it under the terms of the *
# * GNU General Public License as published by the Free Software *
# * Foundation; Version 2 with the clarifications and exceptions described *
# * below. This guarantees your right to use, modify, and redistribute *
# * this software under certain conditions. If you wish to embed Nmap *
# * technology into proprietary software, we sell alternative licenses *
# * (contact [email protected]). Dozens of software vendors already *
# * license Nmap technology such as host discovery, port scanning, OS *
# * detection, and version detection. *
# * *
# * Note that the GPL places important restrictions on "derived works", yet *
# * it does not provide a detailed definition of that term. To avoid *
# * misunderstandings, we consider an application to constitute a *
# * "derivative work" for the purpose of this license if it does any of the *
# * following: *
# * o Integrates source code from Nmap *
# * o Reads or includes Nmap copyrighted data files, such as *
# * nmap-os-db or nmap-service-probes. *
# * o Executes Nmap and parses the results (as opposed to typical shell or *
# * execution-menu apps, which simply display raw Nmap output and so are *
# * not derivative works.) *
# * o Integrates/includes/aggregates Nmap into a proprietary executable *
# * installer, such as those produced by InstallShield. *
# * o Links to a library or executes a program that does any of the above *
# * *
# * The term "Nmap" should be taken to also include any portions or derived *
# * works of Nmap. This list is not exclusive, but is meant to clarify our *
# * interpretation of derived works with some common examples. Our *
# * interpretation applies only to Nmap--we don't speak for other people's *
# * GPL works. *
# * *
# * If you have any questions about the GPL licensing restrictions on using *
# * Nmap in non-GPL works, we would be happy to help. As mentioned above, *
# * we also offer alternative license to integrate Nmap into proprietary *
# * applications and appliances. These contracts have been sold to dozens *
# * of software vendors, and generally include a perpetual license as well *
# * as providing for priority support and updates as well as helping to *
# * fund the continued development of Nmap technology. Please email *
# * [email protected] for further information. *
# * *
# * As a special exception to the GPL terms, Insecure.Com LLC grants *
# * permission to link the code of this program with any version of the *
# * OpenSSL library which is distributed under a license identical to that *
# * listed in the included COPYING.OpenSSL file, and distribute linked *
# * combinations including the two. You must obey the GNU GPL in all *
# * respects for all of the code used other than OpenSSL. If you modify *
# * this file, you may extend this exception to your version of the file, *
# * but you are not obligated to do so. *
# * *
# * If you received these files with a written license agreement or *
# * contract stating terms other than the terms above, then that *
# * alternative license agreement takes precedence over these comments. *
# * *
# * Source is provided to this software because we believe users have a *
# * right to know exactly what a program is going to do before they run it. *
# * This also allows you to audit the software for security holes (none *
# * have been found so far). *
# * *
# * Source code also allows you to port Nmap to new platforms, fix bugs, *
# * and add new features. You are highly encouraged to send your changes *
# * to the [email protected] mailing list for possible incorporation into the *
# * main distribution. By sending these changes to Fyodor or one of the *
# * Insecure.Org development mailing lists, it is assumed that you are *
# * offering the Nmap Project (Insecure.Com LLC) the unlimited, *
# * non-exclusive right to reuse, modify, and relicense the code. Nmap *
# * will always be available Open Source, but this is important because the *
# * inability to relicense code has caused devastating problems for other *
# * Free Software projects (such as KDE and NASM). We also occasionally *
# * relicense the code to third parties as discussed above. If you wish to *
# * specify special license conditions of your contributions, just say so *
# * when you send them. *
# * *
# * This program is distributed in the hope that it will be useful, but *
# * WITHOUT ANY WARRANTY; without even the implied warranty of *
# * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
# * General Public License v2.0 for more details at *
# * http://www.gnu.org/licenses/gpl-2.0.html , or in the COPYING file *
# * included with Nmap. *
# * *
# ***************************************************************************/
# Master RPC program number data base (/etc/rpc).
#
#
# Program numbers are assigned in groups of 0x20000000 (decimal 536870912)
# according to the following chart:
#
# 0x0 - 0x1fffffff Defined by IANA
# 0x20000000 - 0x3fffffff Defined by user
# 0x40000000 - 0x5fffffff Transient
# 0x60000000 - 0x7fffffff Reserved
# 0x80000000 - 0x9fffffff Reserved
# 0xa0000000 - 0xbfffffff Reserved
# 0xc0000000 - 0xdfffffff Reserved
# 0xe0000000 - 0xffffffff Reserved
#
# To obtain SUN Remote Procedure Call (RPC) numbers send an e-mail
# request to "[email protected]".
#
rpcbind 100000 portmap sunrpc rpcbind pmapprog # portmapper
rstatd 100001 rstat rup perfmeter rstat_svc rstatprog # remote stats
rusersd 100002 rusers rusersprog # remote users
nfs 100003 nfsprog nfsd # nfs
ypserv 100004 ypprog # yellow pages (NIS)
mountd 100005 mount showmount mountprog # mount demon
remote_dbx 100006 dbxprog # remote dbx
ypbind 100007 ypbindprog # yp binder (NIS)
walld 100008 rwall shutdown wall # shutdown msg
yppasswdd 100009 yppasswd yppasswdprog # yppasswd server
etherstatd 100010 etherstat etherstatprog # ether stats
rquotad 100011 rquotaprog quota rquota # disk quotas
sprayd 100012 spray # spray packets
3270_mapper 100013 ibm3270prog # 3270 mapper
rje_mapper 100014 ibmrjeprog # Remote job entry mapping service.
selection_svc 100015 selnsvc selnsvcprog # selection service
database_svc 100016 dbsessionmgr unify netdbms dbms rdatabaseprog # remote database access
rexd 100017 rex remote_exec rexec # remote execution
alis 100018 alice office_auto aliceprog # Alice Office Automation
sched 100019 schedprog # scheduling service
llockmgr 100020 lockprog # local lock manager
nlockmgr 100021 netlockprog # network lock manager
x25.inr 100022 x25prog # x.25 inr protocol
statmon 100023 statmon1 # status monitor 1
status 100024 statd rpc.statd statmon2 # Status monitor
select_lib 100025 selnlibprog # selection library
bootparam 100026 # boot parameters service
mazewars 100027 mazeprog # Mazewars game
ypupdated 100028 ypupdate ypupdateprog # yp update (NIS)
keyserv 100029 keyserver keyserveprog # key server
securelogin 100030 securecmdprog # secure login
nfs_fwdlnit 100031 netfwdiprog # NFS network forwarding service.
nfs_fwdtrns 100032 netfwdtprog # NFS forwarding transmitter
sunlink_mapper 100033 sunlinkmap # sunlink MAP
net_monitor 100034 netmonprog # network monitor
database 100035 dbaseprog # Lightweight database
passwd_auth 100036 pwdauthprog # password authorization
tfsd 100037 tfsprog # Translucent file service.
nsed 100038 nseprog # nse server
nsemntd 100039 nse_activate_prog # nse activate daemon
pfs_mountd 100040 sunview_help_prog # sunview help
pnp_prog 100041 # pnp install
ipaddr_alloc_prog 100042 # ip addr allocator
showfhd 100043 showfh filehandle # show filehandle
mvsmount 100044 mvsnfsprog # MVSmount daemon (for mvslogin mvslogout)
rem_fileop_user_prog 100045 # remote user file operations
batch_ypupdateprog 100046 # batched ypupdate
nem_prog 100047 # network execution mgr
raytrace_rd_prog 100048 # raytrace/mandelbrot remote daemon
raytrace_ld_prog 100049 # raytrace/mandelbrot local daemon
rem_fileop_group_prog 100050 # remote group file operations
rem_fileop_system_prog 100051 # remote system file operations
rem_system_role_prog 100052 # remote system role operations
ioadmd 100055 rpc.ioadmd # ioadmd
filemerge_prog 100056 # filemerge
namebind_prog 100057 # Name Binding Program
njeprog 100058 # sunlink NJE
showattrd 100059 mvsattrprog # DFSMS/MVS NFS server
rmgrprog 100060 # SunAccess/SunLink resource manager
uidallocprog 100061 # UID allocation service
NETlicense 100062 lbserverprog # license broker
lbbinderprog 100063 # NETlicense client binder
gidallocprog 100064 # GID allocation service
sunisamd 100065 sunisamprog # SunIsam
debug_svc 100066 dbsrv rdbsrvprog # Remote Debug Server
cmsd 100068 rpc.cmsd dtcalendar cm # Network Calendar Program
ypxfrd 100069 rpc.ypxfrd ypxfr # ypxfrd
timedprog 100070 # rpc.timed
bugtraqd 100071 # bugtraqd
schedroom 100075 # Sun tool for scheduling rooms
authnegotiate_prog 100076 # Authentication Negotiation
attribute_prog 100077 # Database manipulation
kerbd 100078 kerbprog # Kerberos authentication daemon
rpc.operd 100080 opermsg autodump_prog # Sun Online-Backup
event_svc 100081 # Event protocol
bugtraq_qd 100082 # bugtraq_qd
ttdbserverd 100083 rpc.ttdbserverd ttdbserverd ttdbserver tooltalk database service # ToolTalk and Link Service Project
admind 100087 adm_agent # Jupiter Administration
libdsd/dsd 100090 # Dual Disk support
remote_activation_svc 100092 # ToolTalk
host_checking 100093 # Consulting Services
searchit 100095 # Roger Riggs
mesgtool 100096 # Robert Allen
networked 100098 version of CS5 # SISU
autofsd 100099 autofsd autofs # NFS Automount File System
msgboard 100100
event 100101 na.event netmgt_eventd_prog # SunNet Manager
logger 100102 na.logger netmgt_netlogd_prog # SunNet Manager
netmgt_topology_prog 100103 # topology display manager [topology]
sync 100104 na.sync netmgt_syncstatd_prog # syncstat agent [syncstatd]
diskinfo 100105 na.diskinfo netmgt_ippktd_prog # SunNet Manager
iostat 100106 na.iostat netmgt_configd_prog # netmgt config agent [configd]
hostperf 100107 na.hostperf netmgt_restatd_prog # restat agent [restatd]
netmgt_lprstatd_prog 100108 # lpq agent [lprstatd]
activity 100109 na.activity netmgt_mgtlogd_prog # SunNet Manager
db_mgr 100110 netmgt_proxydni_prog # proxy DECnet NCP agent [proxydni]
lpstat 100111 na.lpstat netmgt_mapperd_prog # SunNet Manager
hostmem 100112 na.hostmem netmgt_netstatd_prog # netstat agent [netstatd]
sample 100113 na.sample netmgt_sampled_prog # sample netmgt agent [sampled]
x25 100114 na.x25 netmgt_vcstatd_prog # X.25 statistics agent [vcstatd]
ping 100115 na.ping
rpcnfs 100116 na.rpcnfs
hostif 100117 na.hostif
etherif 100118 na.etherif
ippath 100119 na.ippath # SunNet Manager
iproutes 100120 na.iproutes
layers 100121 na.layers
snmp 100122 na.snmp snmp-cmc snmp-synoptics snmp-unisys snmp-utk
traffic 100123 na.traffic
DNInode 100124 na.dni DNIneT
rpc.localhad 100130 # localhad
layers2 100131 na.layers2 # SunNet Manager
na.tr 100132 # token ring agent
nsm_addrand 100133 nsm_addr # Solaris's statd NSM
ktkt_warnd 100134 kwarn # Kerberos warning daemon
etherif2 100135 na.etherif2 # SunNet Manager
hostmem2 100136 na.hostmem2 # SunNet Manager
iostat2 100137 na.iostat2 # SunNet Manager
snmpv2 100138 na.snmpv2 # SNM Version 2.2.2
sender 100139 cc_sender # Cooperative Consoles
na.cpustat 100140 # na.cpustat
rgmd_receptionist 100141 # Sun Cluster SC3.0
fed 100142
rdc 100143 # Network Storage
nafo 100144 # Sun Cluster products
scadmd 100145 # SunCluster 3.0
amiserv 100146 # AMI Daemon
amiaux 100147 # BER and DER # AMI Daemon
dm 100148 # Delegate Management Server
rkstat 100149
ocfserv 100150 # OCF (Smart card) Daemon
sccheckd 100151
autoclientd 100152
sunvts 100153
ssmond 100154
smserverd 100155 rpc.smserverd # support removable media devices
test1 100156
test2 100157
test3 100158
test4 100159
test5 100160
test6 100161
test7 100162
test8 100163
test9 100164
test10 100165
nfsmapid 100166
SUN_WBEM_C_CIMON_HANDLE 100167
sacmmd 100168
fmd_adm 100169
fmd_api 100170
idmapd 100172
na.snmptrap 100175 # snmptrap
ShowMe 100213
keyrsa 100216 # AUTH_RSA Key service
sunsolve 100218 # WWCS (Corporate)
cstatd 100219
xfn_server_prog 100220 # X/Open Federated Naming
kcms_server 100221 kcs_network_io kcs # SunKCMS Profile Server
ha_dbms_serv 100222 # HA-DBMS
hafaultd 100226
nfs_acl 100227 # NFS ACL Service
#
# rpc.metad - SUNWmd - Sun Solstice DiskSuite
#
dlmd 100228 # distributed lock manager
metad 100229 metad rpc.metad # METAD - SLVM metadb Daemon
metamhd 100230 metamhd rpc.metamhd
nfsauth 100231
sadmind 100232 # Solstice
ufsd 100233 ufsd
gssd 100234 gss grpservd # GSS Daemon
cachefsd 100235 cachefs # CacheFS Daemon
msmprog 100236 Media_Server
ihnamed 100237
ihnetd 100238
ihsecured 100239
ihclassmgrd 100240
ihrepositoryd 100241
rpc.metamedd 100242 metamedd # SUNWmdm - Sun Cluster
contentmanager 100243 cm
sm_symond 100244 symon # Solstice SyMON process controller
pld 100245 genesil
ctid 100246
ccd 100247
rpc.pmfd 100248 pmfd # Sun Cluster - process monitor server
snmpXdmid 100249 dmi2_client
mfs_admin 100250
ndshared_unlink 100251
ndshared_touch 100252
ndshared_slink 100253
cbs 100254 control_board_server
skiserv 100255
nfsxa 100256 nfsxattr
ndshared_disable 100257
ndshared_enable 100258
sms_account_admin 100259
sms_modem_admin 100260
sms_r_login 100261
sms_r_subaccount_mgt 100262
sms_service_admin 100263
session_admin 100264
canci_ancs_program 100265
canci_sms_program 100266
msmp 100267
halck 100268
halogmsg 100269
nfs_id_map 100270
ncall 100271
hmip 100272
repl_mig 100273
repl_mig_cb 100274
rpc.metacld 100281 # SUNWmdm - Sun Cluster
nisd 100300 rpc.nisd nisplus # NIS+
nis_cache 100301 nis_cachemgr # NIS+
nis_callback 100302
nispasswd 100303 rpc.nispasswdd nispasswdd # NIS+ Password Update Daemon
fnsypd 100304 # Federated Naming Service (FNS)
nfscksum 100399 # nfscksum
netmgt_netu_prog 100400 # network utilization agent
netmgt_rping_prog 100401 # network rpc ping agent
na.shell 100402
na.picslp 100403 # picsprint
traps 100404
jdsagent 100410
na.haconfig 100411
na.halhost 100412
na.hadtsrvc 100413
na.hamdstat 100414
na.neoadmin 100415
ex1048prog 100416
rpc.rdmaconfig 100417 # rdmaconfig
fedfs_admin 100418 # FedFS Administration
# MDMN_COMMD
mdcommd 100422 # SVM Multi Node Communication Daemon
kiprop 100423 krb5_iprop
stfsloader 100424 stsf # Standard Type Services Framework (STSF) Font Server
ucmmstate 100532
scrcmd 100533
nselinktool 101002 # nse link daemon
nselinkapp 101003 # nse link application
sharedapp 105001 # ShowMe
REGISTRY_PROG 105002 # Registry
print-server 105003 # Print-server
rpc.pts 105004 Protoserver proto-server # Advanced Printing Software
notification-server 105005 # Notification-server
transfer-agent-server 105006 # Transfer-agent-server
tsolrpcb 110001
tsolpeerinfo 110002
tsolboot 110003
cmip 120001 na.cmip
na.osidiscover 120002
cmiptrap 120003
swu_svr 120100 eserver # Software Usage Monitoring daemon
repserver 120101
swserver 120102
dmd 120103
ca 120104
nf_snmd 120126 nf_fddi # SunNet Manager
nf_snmd 120127 nf_fddismt7_2
pcnfsd 150001 pcnfs pcnfsdprog # pc passwd authorization
pcnfslicense 150006 # PC NFS License
rdaprog 150007 # RDA
wsprog 150008 # WabiServer
wsrlprog 150009 # WabiServer
nihon-cm 160001
nihon-ce 160002
domf_daemon0 170100
domf_daemon1 170101
domf_daemon2 170102
domf_daemon3 170103
domf_daemon4 170104
domf_daemon5 170105
cecprog 180000
cecsysprog 180001
cec2cecprog 180002
cesprog 180003
ces2cesprog 180004
cet2cetprog 180005
cet2cetdoneprog 180006
cetcomprog 180007
cetsysprog 180008
cghapresenceprog 180009
cgdmsyncprog 180010
cgdmcnscliprog 180011
cgdmcrcscliprog 180012
cgdmcrcssvcproG 180013
chmprog 180014
chmsysprog 180015
crcsapiprog 180016
ckptmprog 180017
crimcomponentprog 180018
crimqueryprog 180019
crimsecondaryprog 180020
crimservicesprog 180021
crimsyscomponentprog 180022
crimsysservicesprog 180023
csmagtapiprog 180024
csmagtcallbackprog 180025
csmreplicaprog 180026
csmsrvprog 180027
cssccltprog 180028
csscsvrprog 180029
csscopresultprog 180030
#
# Pyramid
#
PyramidLock 200000 pyramid_nfs
PyramidSys5 200001 pyramid_reserved # Sys5
#
CADDS_Image 200002 cadds_image # CV CADDS images.
stellar_name_prog 200003
#
pdbDA 200005
pacl 200006
lookupids 200007
ax_statd_prog 200008
ax_statd2_prog 200009
edm 200010
dtedirwd 200011
easerpcd 200016
rlxnfs 200017
sascuiddprog 200018
knfsd 200019
SWG 200020 swg ftnfsd ftnfsd_program # DMFE/DAWS (Defense Automated Warning System)
ftsyncd 200021 ftsyncd_program
ftstatd 200022 ftstatd_program
exportmap 200023
nfs_metadata 200024
#
# DMFE/DAWS (Defense Automated Warning System)
#
Gqsrv 200034 gqsrv
Ppt 200035 ppt
Pmt 200036 pmt
Msgt 200037 msgt
Walerts 200038 walerts
Mgt 200039 mgt
Pft 200040 pft
Msgq 200041 msgq
Smpsrv 200042 smpsrv
Dexsrv 200043 dexsrv
Statussrv 200044 statussrv
SessionServer 200046 sessionserver
SessionDaemon 200047 sessiondaemon
Pmsgq 200048 pmsgq
Filesrv 200049 filesrv
Magfetch 200050 magfetch
Optfetch 200051 optfetch
Securitysrv 200052 securitysrv
#
bundle 200100 # Delay Tolerant Networking - DTN agent
bundle_demux 200200 # Delay Tolerant Networking - DTN agent
#
# EcoTools daemons/programs
#
ecodisc 200201 ecoad
ecolic 200202 eamon
eamon 200203 ecolic
cs_printstatus_svr 200204
ecoad 200205 ecodisc
#
# VERSANT
# Operator Communications Software (OCS)
#
rpc.dbserv 211637 dbserv rpc.dbserv_dir
rpc.taped 217843 taped rpc.taped_dir
rpc.taped 217854 taped rpc.taped_dir
#
ADTFileLock 300001 adt_rflockprog # ADT file locking service.
columbine1 300002
system33_prog 300003
#
# FrameMaker
#
rpc.frameusersd 300004 frame_prog1 # FrameMaker
uimxprog 300005
fmclient 300006 rvd # FrameMaker Client
fmeditor 300007 entombing daemon # FrameMaker Editor
account 300008 mgmt system
fmserver 300009 stdfm FrameServer frame_prog2 # FrameMaker Server
#
beeper 300010 access
dptuprog 300011
mx-bcp 300012
instrument-file-access 300013
file-system-statistics 300014
unify-database-server 300015
tmd_msg 300016
amd 300019 amq automounter access
#
lock 300020 server
Steering 300021 # Steering Library
office-automation-1 300022
office-automation-2 300023
office-automation-3 300024
office-automation-4 300025
office-automation-5 300026
office-automation-6 300027
office-automation-7 300028
#
rpc.ldmd 300029 ldm local-data-manager # Unidata LDM
#
# DMFE/DAWS (Defense Automated Warning System)
#
UpdtAuditsS 300030 chide
csi_program 300031
online-help 300033
case-tool 300034
delta 300035
rgi 300036
instrument-config-server 300037
dtia-rpc-server 300040
cms 300041
viewer 300042
aqm 300043
exclaim 300044
masterplan 300045
fig_tool 300046
remote-lock-manager 300050
gdebug 300052
ldebug 300053
rscanner 300054
nSERVER 300066
BioStation 300071
NetProb 300073
Logging 300074
Logging 300075
sw_twin 300082
remote_get_login 300083
odcprog 300084
Dbpass 300091 dbpass smartdoc
superping 300092
distributed-chembench 300093
uacman/alfil-uacman 300094
ait_rcagent_prog 300095
ait_rcagent_appl_prog 300096
smart 300097
ecoprog 300098
leonardo 300099
#
wingz 300108
teidan 300109
cadc_fhlockprog 300116
highscan 300117
opennavigator 300121
aarpcxfer 300122
groggs 300126
licsrv 300127
issdemon 300128
maximize 300130
cgm_server 300131
agent_rpc 300133
docmaker 300134
docmaker 300135
iesx 300139
smart-mbs 300144
clms 300145 # CenterLine CodeCenter
docimage 300147
dmc-interface 300149
jss 300151
arimage 300153
xdb-workbench 300154
frontdesk 300155
dmc 300156
expressight-6000 300157
graph 300158 service program
rlpr 300176
nx_hostdprog 300177
netuser-x 300178
rmntprog 300179
mipe 300181
collectorprog 300183
uslookup_PROG 300184
viewstation 300185
iate 300186
imsvtprog 300190
pmdb 300194
pmda 300195
trend_idbd 300198
rres 300199
sd.masterd 300200
sd.executiond 300201
sd.listend 300202
sd.reserve1 300203
sd.reserve2 300204
msbd 300205
stagedprog 300206
mountprog 300207
watchdprog 300208
pms 300209
session_server_program 300211
session_program 300212
debug_serverprog 300213
#
# FrameMaker
fm_flb 300214 # FrameMaker
fm_fls 300215 # FrameMaker licnese server
paceprog 300216
mbus 300218
aframes2ps 300219
npartprog 300220
cm1server 300221
cm1bridge 300222
sailfrogfaxprog 300223
sailfrogphoneprog 300224
sailfrogvmailprog 300225
wserviceprog 300226 arcstorm
hld 300227
alive 300228
radsp 300229
radavx 300230
radview 300231
rsys_prog 300232
rsys_prog 300233
fm_rpc_prog 300234
aries 300235
uapman 300236
ddman 300237
top 300238
trendlink 300240
licenseprog 300241
statuslicenseprog 300242
oema_rmpf_svc 300243
oema_smpf_svc 300244
oema_rmsg_svc 300245
grapes-sd 300246
ds_master 300247
ds_transfer 300248
ds_logger 300249
ds_query 300250
nsd_prog 300253
browser 300254
epoch 300255
floorplanner 300256
reach 300257
tactic 300258
cachescientific1 300259
cachescientific2 300260
desksrc_prog 300261
photo3d1 300262
photo3d2 300263
soundmgr 300265
s6k 300266
aims_referenced_ 300267
xess 300268
ds_queue 300269
orionscanplus 300271
openlink-xx 300272
kbmsprog 300273
futuresource 300275
the_xprt 300276
cmg_srvprog 300277
front 300280
conmanprog 300284
jincv2 300285
isls 300286
systemstatprog 300287
fxpsprog 300288
callpath 300289
axess 300290
armor_rpcd 300291
armor_dictionary_rpcd 300292
armor_miscd 300293
filetransfer_prog 300294
bl_swda 300295
bl_hwda 300296
filemon 300300
#
# AcuServer provides remote file access services to ACUCOBOL-85 and
# ACUCOBOL-GT applications.
#
acuserve 300301 acunetprog
#
rbuild 300302
assistprog 300303
tog 300304
sns7000 300306
igprog 300307
tgprog 300308
plc 300309
pxman 300310 pxlsprog
hde_server 300311 hdeserver
tsslicenseprog 300312
rpc.explorerd 300313
chrd 300314
tbisam 300315
tbis 300316
adsprog 300317
sponsorprog 300318
querycmprog 300319
mobil1 300322
sld 300323
linkprog 300324
codexdaemonprog 300325
dr_daemon 300326 drprog # Sun Enterprise Server Alternate Pathing
ressys_commands 300327
stamp 300328
matlab 300329
sched1d 300330
upcprog 300331
xferbkch 300332
xfer 300333
qbthd 300334
qbabort 300335
lsd 300336
geomgrd 300337
generic_fts 300338
ft_ack 300339
lymb 300340
vantage 300341
cltstd 300342 clooptstdprog
clui 300343 clui_prog
testerd 300344 tstdprog
extsim 300345
cmd_dispatch 300346 maxm_ems
callpath_receive_program 300347
x3270prog 300348
sbc_lag 300349
sbc_frsa 300350
sbc_frs 300351
atommgr 300352
geostrat 300353
dbvialu6.2 300354
fxncprog 300356
infopolic 300357
aagns 300359
aagms 300360
clariion_mgr 300362
setcimrpc 300363
virtual_protocol_adapter 300364
unibart 300365
uniarch 300366
unifile 300367
unisrex 300368
uniscmd 300369
rsc 300370
set 300371
desaf-ws/key 300372
reeldb 300373
nl 300374
#
# FA&O Command Post App
#
rmd 300375
agcd 300376
#
rsynd 300377
rcnlib 300378
rcnlib_attach 300379
evergreen_mgmt_agent 300380
fx104prog 300381
rui 300382
ovomd 300383
system_server 300386
pipecs 300387 cs_pipeprog
uv-net 300388 univision
auexe 300389
audip 300390
mqi 300391
eva 300392
eeei_reserved_1 300393
eeei_reserved_2 300394
eeei_reserved_3 300395
eeei_reserved_4 300396
eeei_reserved_5 300397
eeei_reserved_6 300398
eeei_reserved_7 300399
eeei_reserved_8 300400
cprlm 300401
wg_idms_manager 300402
timequota 300403
spiff 300404
ov_oem_svc 300405
ov_oem_svc 300406
ov_oem_svc 300407
ov_oem_svc 300408
ov_oem_svc 300409
ov_oem_svc 300410
ov_oem_svc 300411
ov_oem_svc 300412
ov_oem_svc 300413
ov_msg_ctlg_svc 300415
ov_advt_reg_svc 300416
showkron 300417
showkron 300418
showkron 300419
showkron 300420
showkron 300421
showkron 300422
showkron 300423
daatd 300425
swiftnet 300426
ovomdel 300427
ovomreq 300428
msg_dispatcher 300429
pcshare 300430 server
rcvs 300431
fdfserver 300432
bssd 300433 bss
drdd 300434 drd
mif_gutsprog 300435
mif_guiprog 300436
twolfd 300437
twscd 300438
nwsbumv 300439
dgux_mgr 300440
pfxd 300441
tds 300442
ovomadmind 300443
ovomgate 300444
omadmind 300445
nps 300446
npd 300447
tsa 300448
cdaimc 300449
ckt_implementation 300453
mda-tactical 300454
atrrun 300459
RoadRunner 300460
nas 300461
undelete 300462
ovacadd 300463
tbdesmai 300464
arguslm 300465
dmd 300466
drd 300467
fm_help 300468
ftransrpc_prog 300469
finrisk 300470
dg_pc_idisched 300471
dg_pc_idiserv 300472
ap_daemon 300473 apd # SUNWapu - Alternate Pathing (AP)
ap_sspd 300474
callpatheventrecorder 300475
flc 300476
dg_osm 300477
dspnamed 300478
iqddsrv 300479
iqjobsrv 300480
tacosxx 300481
wheeldbmg 300482
cnxmond 300483 cnxmgr_nm_prog # cluster node monitor (Digital UNIX)
cnxagentd 300484 cnxmgr_cfg_prog # cluster agent (Digital UNIX)
3dsmapper 300485
ids 300486
imagine_rpc_svc 300487
lfn 300488
salesnet 300489
defaxo 300490
dbqtsd 300491
kms 300492
rpc.iced 300493
calc2s 300494
ptouidprog 300495
docsls 300496
new 300497
collagebdg 300498
ars_server 300499
ars_client 300500
vr_catalog 300501
vr_tdb 300502
ama 300503
evama 300504
conama 300505
service_process 300506
reuse_proxy 300507
mars_ctrl 300508
mars_db 300509
mars_com 300510
mars_admch 300511
tbpipcip 300512
top_acs_svc 300513
inout_svc 300514
csoft_wp 300515
mcserv 300516 mcfs
eventprog 300517
dg_pc_idimsg 300518
dg_pc_idiaux 300519
atsr_gc 300520
alarm 300521 alarm_prog
fts_prog 300522
dcs_prog 300523
ihb_prog 300524
cluinfod 300527 clu_info_prog # cluster information server (Digital UNIX)
rmfm 300528
c2sdocd 300529
interahelp 300530
callpathasyncmsghandler 300531
optix_arc 300532
optix_ts 300533
optix_wf 300534
maxopenc 300535
cev 300536 cev_server
sitewideprog 300537
drs 300538
drsdm 300539
dasgate 300540
dcdbd 300541
dcpsd 300542
supportlink_prog 300543
broker 300544
listner 300545
multiaccess 300546
spai_interface 300547
spai_adaption 300548
chimera_ci 300549
chimera_pi 300550
teamware_fl 300551
teamware_sl 300552
teamware_ui 300553
lprm 300554
mpsprog 300555
mo_symdis 300556
retsideprog 300557
slp 300558
slm-api 300559
im_rpc 300560 teamconference
license_prog 300561 license
stuple 300562 stuple_prog
upasswd_prog 300563
gentranmentorsecurity 300564
gentranmentorprovider 300565
latituded 300566
gentranmentorreq1 300567
gentranmentorreq2 300568
gentranmentorreq3 300569
rj_server 300570
gws-rdb 300571
gws-mpmd 300572
gws-spmd 300573
vwcalcd 300574
vworad 300575
vwsybd 300576
vwave 300577
online_assistant 300578
internet_assistant 300579
spawnd 300580
procmgrg 300581
cfgdbd 300582
logutild 300583
ibis 300584
ibisaux 300585
aapi 300586
rstrt 300587
hbeat 300588
pcspu 300589
empress 300590
sched_server 300591
path_server 300592
c2sdmd 300593
c2scf 300594
btsas 300595
sdtas 300596
appie 300597
dmispd 300598 dmi # Sun Solstice Enterprise DMI Service Provider
pscd 300599
sisd 300600
cpwebserver 300601
wwcommo 300602
mx-mie 300603
mx-mie-debug 300604
idmn 300605
ssrv 300606
vpnserver 300607
samserver 300608
sams_server 300609
chrysalis 300610
ddm 300611
ddm-is 300612
mx-bcp-debug 300613
upmrd 300614
upmdsd 300615
res 300616
colortron 300617
zrs 300618
afpsrv 300619
apxft 300620
nrp 300621
hpid 300622
mailwatch 300623
fos 300624 bc_fcrb_receiver
cs_sysadmin_svr 300625
cs_controller_svr 300626
nokia_nms_eai 300627