forked from danielmiessler/SecLists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLDAP-openldap-attributes.txt
1342 lines (1342 loc) · 21.9 KB
/
LDAP-openldap-attributes.txt
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
aACertificate
accountExpires
accountNameHistory
aCSAggregateTokenRatePerUser
aCSAllocableRSVPBandwidth
aCSCacheTimeout
aCSDirection
aCSDSBMDeadTime
aCSDSBMPriority
aCSDSBMRefresh
aCSEnableACSService
aCSEnableRSVPAccounting
aCSEnableRSVPMessageLogging
aCSEventLogLevel
aCSIdentityName
aCSMaxAggregatePeakRatePerUser
aCSMaxDurationPerFlow
aCSMaximumSDUSize
aCSMaxNoOfAccountFiles
aCSMaxNoOfLogFiles
aCSMaxPeakBandwidth
aCSMaxPeakBandwidthPerFlow
aCSMaxSizeOfRSVPAccountFile
aCSMaxSizeOfRSVPLogFile
aCSMaxTokenBucketPerFlow
aCSMaxTokenRatePerFlow
aCSMinimumDelayVariation
aCSMinimumLatency
aCSMinimumPolicedSize
aCSNonReservedMaxSDUSize
aCSNonReservedMinPolicedSize
aCSNonReservedPeakRate
aCSNonReservedTokenSize
aCSNonReservedTxLimit
aCSNonReservedTxSize
aCSPermissionBits
aCSPolicyName
aCSPriority
aCSRSVPAccountFilesLocation
aCSRSVPLogFilesLocation
aCSServerList
aCSServiceType
aCSTimeOfDay
aCSTotalNoOfFlows
additionalTrustedServiceNames
addressBookRoots
addressEntryDisplayTable
addressEntryDisplayTableMSDOS
addressSyntax
addressType
adminContextMenu
adminCount
adminDescription
adminDisplayName
adminPropertyPages
aliasedObjectName
allowedAttributes
allowedAttributesEffective
allowedChildClasses
allowedChildClassesEffective
altSecurityIdentities
altServer
aNR
applicationName
appliesTo
appSchemaVersion
aRecord
assetNumber
assistant
associatedDomain
associatedName
assocNTAccount
attributeAuthorityRevocationList
attributeCertificateAttribute
attributeCertificateRevocationList
attributeDescriptorCertificate
attributeDisplayNames
attributeID
attributeMap
attributeSecurityGUID
attributeSyntax
attributeTypes
audio
auditingPolicy
authenticationMethod
authenticationOptions
authorityRevocationList
auxiliaryClass
badPasswordTime
badPwdCount
bindTimeLimit
birthLocation
bootFile
bootParameter
bridgeheadServerListBL
bridgeheadTransportList
buildingName
builtinCreationTime
builtinModifiedCount
businessCategory
bytesPerMinute
c
cACertificate
cACertificateDN
cAConnect
canonicalName
canUpgradeScript
carLicense
catalogs
categories
categoryId
cAUsages
cAWEBURL
certificateAuthorityObject
certificateRevocationList
certificateTemplates
c-FacsimileTelephoneNumber
c-InternationalISDNNumber
c-l
classDisplayName
cn
cNAMERecord
c-o
co
codePage
cOMClassID
cOMCLSID
cOMInterfaceID
comment
cOMOtherProgId
company
cOMProgID
cOMTreatAsClassId
cOMTypelibId
cOMUniqueLIBID
contentIndexingAllowed
contextMenu
controlAccessRights
corbaIor
corbaRepositoryId
cost
c-ou
countryCode
c-PhysicalDeliveryOfficeName
c-PostalAddress
c-PostalCode
c-PostOfficeBox
createDialog
createTimestamp
createWizardExt
creationTime
creationWizard
creator
creatorsName
credentialLevel
cRLObject
cRLPartitionedRevocationList
crossCertificatePair
c-st
c-street
c-TelephoneNumber
c-TelexNumber
currentLocation
currentParentCA
currentValue
currMachineId
dBCSPwd
dc
defaultClassStore
defaultGroup
defaultHidingValue
defaultLocalPolicyObject
defaultObjectCategory
defaultPriority
defaultSearchBase
defaultSearchScope
defaultSecurityDescriptor
defaultServerList
delegationPath
deltaRevocationList
department
departmentNumber
dereferenceAliases
description
desktopProfile
destinationIndicator
dgAuthz
dgIdentity
dhcpClasses
dhcpFlags
dhcpIdentification
dhcpMask
dhcpMaxKey
dhcpObjDescription
dhcpObjName
dhcpOptions
dhcpProperties
dhcpRanges
dhcpReservations
dhcpServers
dhcpSites
dhcpState
dhcpSubnets
dhcpType
dhcpUniqueKey
dhcpUpdateTime
directReports
displayName
displayNamePrintable
distinguishedName
dITRedirect
division
dMDLocation
dmdName
dnQualifier
dNReferenceUpdate
dnsAllowDynamic
dnsAllowXFR
dNSHostName
dnsNotifySecondaries
dNSProperty
dnsRecord
dnsRoot
dnsSecureSecondaries
dNSTombstoned
documentAuthor
documentIdentifier
documentLocation
documentPublisher
documentTitle
documentVersion
domainCAs
domainCrossRef
domainID
domainIdentifier
domainPolicyObject
domainPolicyReference
domainReplica
domainWidePolicy
drink
driverName
driverVersion
dSAQuality
dSASignature
dSCorePropagationData
dSHeuristics
dSUIAdminMaximum
dSUIAdminNotification
dSUIShellMaximum
dynamicLDAPServer
dynamicSubtrees
eFSPolicy
email
employeeID
employeeNumber
employeeType
Enabled
enabledConnection
enhancedSearchGuide
enrollmentProviders
entryDN
entryTtl
entryUUID
extendedAttributeInfo
extendedCharsAllowed
extendedClassInfo
extensionName
facsimileTelephoneNumber
fileExtPriority
flags
flatName
followReferrals
forceLogoff
foreignIdentifier
friendlyNames
fromEntry
fromServer
frsComputerReference
frsComputerReferenceBL
fRSControlDataCreation
fRSControlInboundBacklog
fRSControlOutboundBacklog
fRSDirectoryFilter
fRSDSPoll
fRSExtensions
fRSFaultCondition
fRSFileFilter
fRSFlags
fRSLevelLimit
fRSMemberReference
fRSMemberReferenceBL
fRSPartnerAuthLevel
fRSPrimaryMember
fRSReplicaSetGUID
fRSReplicaSetType
fRSRootPath
fRSRootSecurity
fRSServiceCommand
fRSServiceCommandStatus
fRSStagingPath
fRSUpdateTimeout
fRSVersion
fRSVersionGUID
fRSWorkingPath
fSMORoleOwner
garbageCollPeriod
gecos
generatedConnection
generationQualifier
gidNumber
givenName
globalAddressList
governsID
gPCFileSysPath
gPCFunctionalityVersion
gPCMachineExtensionNames
gPCUserExtensionNames
gPLink
gPOptions
groupAttributes
groupMembershipSAM
groupPriority
groupsToIgnore
groupType
hasMasterNCs
hasPartialReplicaNCs
hasSubordinates
helpData16
helpData32
helpFileName
homeDirectory
homeDrive
homePhone
homePostalAddress
host
houseIdentifier
iconPath
implementedCategories
indexedScopes
info
initialAuthIncoming
initialAuthOutgoing
initials
installUiLevel
instanceType
internationaliSDNNumber
interSiteTopologyFailover
interSiteTopologyGenerator
interSiteTopologyRenew
invocationId
ipHostNumber
ipNetmaskNumber
ipNetworkNumber
ipPhone
ipProtocolNumber
ipsecData
ipsecDataType
ipsecFilterReference
ipsecID
ipsecISAKMPReference
ipsecName
iPSECNegotiationPolicyAction
ipsecNegotiationPolicyReference
iPSECNegotiationPolicyType
ipsecNFAReference
ipsecOwnersReference
ipsecPolicyReference
ipServicePort
ipServiceProtocol
isCriticalSystemObject
isDefunct
isDeleted
isEphemeral
isMemberOfPartialAttributeSet
isPrivilegeHolder
isRecycled
isSingleValued
janetMailbox
javaClassName
javaClassNames
javaCodebase
javaDoc
javaFactory
javaReferenceAddress
javaSerializedData
jpegPhoto
keywords
knowledgeInformation
l
labeledURI
lastBackupRestorationTime
lastContentIndexed
lastKnownParent
lastLogoff
lastLogon
lastLogonTimestamp
lastSetTime
lastUpdateSequence
lDAPAdminLimits
lDAPDisplayName
lDAPIPDenyList
ldapSyntaxes
legacyExchangeDN
linkID
linkTrackSecret
lmPwdHistory
localeID
localizationDisplayId
localizedDescription
localPolicyFlags
localPolicyReference
location
lockoutDuration
lockOutObservationWindow
lockoutThreshold
lockoutTime
loginShell
logonCount
logonHours
logonWorkstation
lSACreationTime
lSAModifiedCount
macAddress
machineArchitecture
machinePasswordChangeInterval
machineRole
machineWidePolicy
mail
mailAddress
mailHost
mailLocalAddress
mailPreferenceOption
mailRoutingAddress
managedBy
managedObjects
manager
mAPIID
marshalledInterface
masteredBy
matchingRules
matchingRuleUse
maxPwdAge
maxRenewAge
maxStorage
maxTicketAge
mayContain
mDRecord
meetingAdvertiseScope
meetingApplication
meetingBandwidth
meetingBlob
meetingContactInfo
meetingDescription
meetingID
meetingIP
meetingIsEncrypted
meetingKeyword
meetingLanguage
meetingLocation
meetingMaxParticipants
meetingName
meetingOriginator
meetingOwner
meetingProtocol
meetingRating
meetingRecurrence
meetingScope
meetingType
meetingURL
member
memberNisNetgroup
memberOf
memberUid
memberURL
mhsORAddress
minPwdAge
minPwdLength
minTicketAge
mobile
modifiedCount
modifiedCountAtLastProm
modifiersName
modifyTimestamp
moniker
monikerDisplayName
moveTreeState
msCOM-PartitionSetLink
msCOM-UserLink
msCOM-UserPartitionSetLink
mscopeId
msDFSR-ComputerReferenceBL
msDFSR-MemberReferenceBL
msDRM-IdentityCertificate
msDS-AdditionalDnsHostName
msDS-AdditionalSamAccountName
msDS-Approx-Immed-Subordinates
msDS-AssignedAuthNPolicy
msDS-AssignedAuthNPolicySilo
msDS-AuthenticatedAtDC
msDS-AuthenticatedToAccountlist
msDS-AuthNPolicySiloMembersBL
msDS-AzApplicationData
msDS-AzBizRule
msDS-AzBizRuleLanguage
msDS-AzGenericData
msDS-AzLastImportedBizRulePath
msDS-AzLDAPQuery
msDS-AzObjectGuid
msDS-Cached-Membership
msDS-Cached-Membership-Time-Stamp
msDS-ClaimSharesPossibleValuesWithBL
mS-DS-ConsistencyChildCount
mS-DS-ConsistencyGuid
mS-DS-CreatorSID
msDS-EnabledFeatureBL
msDS-ExecuteScriptPassword
msDS-FailedInteractiveLogonCount
msDS-FailedInteractiveLogonCountAtLastSuccessfulLogon
msDS-GenerationId
msDS-HostServiceAccount
msDS-HostServiceAccountBL
msDS-IsDomainFor
msDS-IsFullReplicaFor
msDS-isGC
msDS-IsPartialReplicaFor
msDS-IsPrimaryComputerFor
msDS-isRODC
msDS-IsUserCachableAtRodc
msDS-KrbTgtLink
msDS-KrbTgtLinkBl
msDS-LastFailedInteractiveLogonTime
msDS-LastKnownRDN
msDS-LastSuccessfulInteractiveLogonTime
msDS-LocalEffectiveDeletionTime
msDS-LocalEffectiveRecycleTime
ms-DS-MachineAccountQuota
msDs-masteredBy
msds-memberOfTransitive
msDS-MembersForAzRole
msDS-MembersForAzRoleBL
msDS-MembersOfResourcePropertyListBL
msds-memberTransitive
msDS-NCReplCursors
msDS-NCReplInboundNeighbors
msDS-NCReplOutboundNeighbors
msDS-NC-RO-Replica-Locations-BL
msDS-NcType
msDS-NeverRevealGroup
msDS-NonMembers
msDS-NonMembersBL
msDS-ObjectReference
msDS-ObjectReferenceBL
msDS-OIDToGroupLinkBl
msDS-OperationsForAzRole
msDS-OperationsForAzRoleBL
msDS-OperationsForAzTask
msDS-OperationsForAzTaskBL
msDS-parentdistname
msDS-PrimaryComputer
msDS-PrincipalName
msDS-PromotionSettings
msDS-PSOApplied
msDS-ReplAttributeMetaData
mS-DS-ReplicatesNCReason
msDS-ReplValueMetaData
msDS-ReplValueMetaDataExt
msDS-ResultantPSO
msDS-RevealedDSAs
msDS-RevealedList
msDS-RevealedListBL
msDS-RevealedUsers
msDS-RevealOnDemandGroup
msDS-SecondaryKrbTgtNumber
msDS-Site-Affinity
msDS-SiteName
msDS-SourceObjectDN
msDS-SupportedEncryptionTypes
msDS-SyncServerUrl
msDS-TasksForAzRole
msDS-TasksForAzRoleBL
msDS-TasksForAzTask
msDS-TasksForAzTaskBL
msDS-TDOEgressBL
msDS-TDOIngressBL
msDS-User-Account-Control-Computed
msDS-UserPasswordExpiryTimeComputed
msDS-ValueTypeReferenceBL
msiFileList
msIIS-FTPDir
msIIS-FTPRoot
msImaging-HashAlgorithm
msImaging-ThumbprintHash
msiScript
msiScriptName
msiScriptPath
msiScriptSize
mSMQAuthenticate
mSMQBasePriority
mSMQComputerType
mSMQCost
mSMQCSPName
mSMQDependentClientService
mSMQDependentClientServices
mSMQDigests
mSMQDigestsMig
mSMQDsService
mSMQDsServices
mSMQEncryptKey
mSMQForeign
mSMQInRoutingServers
mSMQInterval1
mSMQInterval2
mSMQJournal
mSMQJournalQuota
mSMQLabel
mSMQLongLived
mSMQMigrated
mSMQNameStyle
mSMQNt4Flags
mSMQNt4Stub
mSMQOSType
mSMQOutRoutingServers
mSMQOwnerID
mSMQPrevSiteGates
mSMQPrivacyLevel
mSMQQMID
mSMQQueueJournalQuota
mSMQQueueNameExt
mSMQQueueQuota
mSMQQueueType
mSMQQuota
mSMQRoutingService
mSMQRoutingServices
mSMQServices
mSMQServiceType
mSMQSignCertificates
mSMQSignCertificatesMig
mSMQSignKey
mSMQSite1
mSMQSite2
mSMQSiteForeign
mSMQSiteGates
mSMQSiteGatesMig
mSMQSiteID
mSMQSiteName
mSMQSites
mSMQTransactional
mSMQUserSid
mSMQVersion
msNPAllowDialin
msNPCalledStationID
msNPCallingStationID
msNPSavedCallingStationID
msPKIAccountCredentials
msPKI-CredentialRoamingTokens
msPKIDPAPIMasterKeys
msPKIRoamingTimeStamp
msRADIUSCallbackNumber
msRADIUS-FramedInterfaceId
msRADIUSFramedIPAddress
msRADIUS-FramedIpv6Prefix
msRADIUS-FramedIpv6Route
msRADIUSFramedRoute
msRADIUS-SavedFramedInterfaceId
msRADIUS-SavedFramedIpv6Prefix
msRADIUS-SavedFramedIpv6Route
msRADIUSServiceType
msRASSavedCallbackNumber
msRASSavedFramedIPAddress
msRASSavedFramedRoute
msRRASAttribute
msRRASVendorAttributeEntry
msSFU30Aliases
msSFU30Name
msSFU30NisDomain
msSFU30PosixMember
msSFU30PosixMemberOf
mS-SQL-Alias
mS-SQL-AllowAnonymousSubscription
mS-SQL-AllowImmediateUpdatingSubscription
mS-SQL-AllowKnownPullSubscription
mS-SQL-AllowQueuedUpdatingSubscription
mS-SQL-AllowSnapshotFilesFTPDownloading
mS-SQL-AppleTalk
mS-SQL-Applications
mS-SQL-Build
mS-SQL-CharacterSet
mS-SQL-Clustered
mS-SQL-ConnectionURL
mS-SQL-Contact
mS-SQL-CreationDate
mS-SQL-Database
mS-SQL-Description
mS-SQL-GPSHeight
mS-SQL-GPSLatitude
mS-SQL-GPSLongitude
mS-SQL-InformationDirectory
mS-SQL-InformationURL
mS-SQL-Keywords
mS-SQL-Language
mS-SQL-LastBackupDate
mS-SQL-LastDiagnosticDate
mS-SQL-LastUpdatedDate
mS-SQL-Location
mS-SQL-Memory
mS-SQL-MultiProtocol
mS-SQL-Name
mS-SQL-NamedPipe
mS-SQL-PublicationURL
mS-SQL-Publisher
mS-SQL-RegisteredOwner
mS-SQL-ServiceAccount
mS-SQL-Size
mS-SQL-SortOrder
mS-SQL-SPX
mS-SQL-Status
mS-SQL-TCPIP
mS-SQL-ThirdParty
mS-SQL-Type
mS-SQL-UnicodeSortOrder
mS-SQL-Version
mS-SQL-Vines
msTPM-OwnerInformation
msTPM-TpmInformationForComputer
msTSAllowLogon
msTSBrokenConnectionAction
msTSConnectClientDrives
msTSConnectPrinterDrives
msTSDefaultToMainPrinter
msTSEndpointData
msTSEndpointPlugin
msTSEndpointType
msTSExpireDate
msTSExpireDate2
msTSExpireDate3
msTSExpireDate4
msTSHomeDirectory
msTSHomeDrive
msTSInitialProgram
msTSLicenseVersion
msTSLicenseVersion2
msTSLicenseVersion3
msTSLicenseVersion4
msTSLSProperty01
msTSLSProperty02
msTSManagingLS
msTSManagingLS2
msTSManagingLS3
msTSManagingLS4
msTSMaxConnectionTime
msTSMaxDisconnectionTime
msTSMaxIdleTime
msTSPrimaryDesktop
msTSPrimaryDesktopBL
msTSProfilePath
msTSProperty01
msTSProperty02
msTSReconnectionAction
msTSRemoteControl
msTSSecondaryDesktopBL
msTSSecondaryDesktops
msTSWorkDirectory
mustContain
mXRecord
name
nameServiceFlags
namingContexts
nCName
nETBIOSName
netbootAllowNewClients
netbootAnswerOnlyValidClients
netbootAnswerRequests
netbootCurrentClientCount
netbootDUID
netbootGUID
netbootInitialization
netbootIntelliMirrorOSes
netbootLimitClients
netbootLocallyInstalledOSes
netbootMachineFilePath
netbootMaxClients
netbootMirrorDataFile
netbootNewMachineNamingPolicy
netbootNewMachineOU
netbootSCPBL
netbootServer
netbootSIFFile
netbootTools
networkAddress
nextLevelStore
nextRid
nisMapEntry
nisMapName
nisNetgroupTriple
nonSecurityMember
nonSecurityMemberBL
notes
notificationList
nSRecord
nTGroupMembers
nTMixedDomain
ntPwdHistory
nTSecurityDescriptor
o
objectCategory
objectClass
objectClassCategory
objectClasses
objectclassMap
objectCount
objectGUID
objectSid
objectVersion
oEMInformation
olcAccess
olcAddContentAcl
olcAllows
olcArgsFile
olcAttributeOptions
olcAttributeTypes
olcAuthIDRewrite
olcAuthzPolicy
olcAuthzRegexp
olcBackend
olcConcurrency
olcConfigDir
olcConfigFile
olcConnMaxPending
olcConnMaxPendingAuth
olcDatabase
olcDbCheckpoint
olcDbDirectory
olcDbEnvFlags
olcDbIndex
olcDbMaxReaders
olcDbMaxSize
olcDbMode
olcDbNoSync
olcDbRtxnSize
olcDbSearchStack
olcDefaultSearchBase
olcDisallows
olcDitContentRules
olcExtraAttrs
olcGentleHUP
olcHidden
olcIdleTimeout
olcInclude
olcIndexIntLen
olcIndexSubstrAnyLen
olcIndexSubstrAnyStep
olcIndexSubstrIfMaxLen
olcIndexSubstrIfMinLen
olcLastMod
olcLdapSyntaxes
olcLimits
olcListenerThreads
olcLocalSSF
olcLogFile
olcLogLevel
olcMaxDerefDepth
olcMirrorMode
olcModuleLoad
olcModulePath
olcMonitoring
olcObjectClasses
olcObjectIdentifier
olcOverlay
olcPasswordCryptSaltFormat
olcPasswordHash
olcPidFile
olcPlugin
olcPluginLogFile
olcReadOnly
olcReferral
olcReplica
olcReplicaArgsFile
olcReplicaPidFile
olcReplicationInterval
olcReplogFile
olcRequires
olcRestrict
olcReverseLookup
olcRootDN
olcRootDSE
olcRootPW
olcSaslAuxprops
olcSaslHost
olcSaslRealm
olcSaslSecProps
olcSchemaDN
olcSecurity
olcServerID
olcSizeLimit
olcSockbufMaxIncoming
olcSockbufMaxIncomingAuth
olcSortVals
olcSubordinate
olcSuffix
olcSyncrepl
olcSyncUseSubentry
olcTCPBuffer
olcThreads
olcTimeLimit
olcTLSCACertificateFile
olcTLSCACertificatePath
olcTLSCertificateFile
olcTLSCertificateKeyFile
olcTLSCipherSuite
olcTLSCRLCheck
olcTLSCRLFile
olcTLSDHParamFile
olcTLSECName
olcTLSProtocolMin
olcTLSRandFile
olcTLSVerifyClient
olcToolThreads
olcUpdateDN
olcUpdateRef
olcWriteTimeout
oMObjectClass
oMSyntax
oMTGuid
oMTIndxGuid
oncRpcNumber
operatingSystem
operatingSystemHotfix
operatingSystemServicePack
operatingSystemVersion
operatorCount
optionDescription
options
optionsLocation
organizationalStatus
originalDisplayTable
originalDisplayTableMSDOS
otherFacsimileTelephoneNumber
otherHomePhone
otherIpPhone
otherLoginWorkstations
otherMailbox
otherMobile
otherPager
otherTelephone
otherWellKnownObjects
ou
owner
ownerBL
packageFlags
packageName
packageType
pager
parentCA
parentCACertificateChain
parentGUID
partialAttributeDeletionList
partialAttributeSet
pekKeyChangeInterval
pekList
pendingCACertificates
pendingParentCA
perMsgDialogDisplayTable
perRecipDialogDisplayTable
personalSignature
personalTitle
photo
physicalDeliveryOfficeName
physicalLocationObject
pKICriticalExtensions
pKIDefaultCSPs
pKIDefaultKeySpec
pKIEnrollmentAccess
pKIExpirationPeriod
pKIExtendedKeyUsage
pKIKeyUsage
pKIMaxIssuingDepth
pKIOverlapPeriod
pKT
pKTGuid
policyReplicationFlags
portName
possibleInferiors
possSuperiors
postalAddress
postalCode
postOfficeBox
preferredDeliveryMethod
preferredLanguage
preferredOU
preferredServerList
prefixMap
presentationAddress
previousCACertificates
previousParentCA
primaryGroupID
primaryGroupToken
primaryInternationalISDNNumber
primaryTelexNumber
printAttributes
printBinNames