This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Parameter | Example Value | Meaning | Default Value | |
---|---|---|---|---|
Query | (objectclass=pKIEnrollmentService) | Filter on objectclass attribute to query EnterpriseCA objects | N/A - required argument | |
Attributes | *,ntsecuritydescriptor | Return all attributes and the nTSecurityDescriptor (allows BOFHound to parse ACLs) | All attributes, but excluding nTSecurityDescriptor | |
Result Count | 0 | Return all results (non-zero value limits results returned) | 0 | |
Scope | 3 | Use subtree (deep) search. Lower values can be used to narrow the search scope | 3 | |
Domain Controller | " | Left unspecified to resort to default behavior | Defaults to automatic DC resolution | |
Distinguished Name/Search Base | CN=Configuration,DC=domain,DC=local | Begin the query in the Configuration naming context | The default domain context | |
LDAPS | N/A | Left unspecified for regular LDAP; set to 1 for LDAPS usage | 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Need to link to blog | |
# | |
# Update param parsing func | |
# | |
def ldapsearch_parse_params( demon, params ): | |
packer = Packer() | |
num_params = len(params) |