diff --git a/bofhound/parsers/brc4_ldap_sentinel.py b/bofhound/parsers/brc4_ldap_sentinel.py index a8d5da4..0100bd8 100644 --- a/bofhound/parsers/brc4_ldap_sentinel.py +++ b/bofhound/parsers/brc4_ldap_sentinel.py @@ -6,7 +6,7 @@ # If field is empty, DO NOT WRITE IT TO FILE! class Brc4LdapSentinelParser(): - # BRC4 LDAP Sentinel currently only queries attributes=["*""] and objectClass + # BRC4 LDAP Sentinel currently only queries attributes=["*"] and objectClass # is always the top result. May need to be updated in the future. START_BOUNDARY = '[+] objectclass :' END_BOUNDARY = '+-------------------------------------------------------------------+' @@ -115,4 +115,4 @@ def _is_start_boundary_line(line): def _is_end_boundary_line(line): if line == Brc4LdapSentinelParser.END_BOUNDARY: return True - return False \ No newline at end of file + return False