diff --git a/autorecon/default-plugins/ldap.py b/autorecon/default-plugins/ldap.py index 8f01f4f..2254fbf 100644 --- a/autorecon/default-plugins/ldap.py +++ b/autorecon/default-plugins/ldap.py @@ -25,5 +25,5 @@ class LDAPSearch(ServiceScan): def manual(self, service, plugin_was_run): service.add_manual_command('ldapsearch command (modify before running):', [ - 'ldapsearch -x -D "" -w """ -p {port} -h {address} -b "dc=example,dc=com" -s sub "(objectclass=*) 2>&1 | tee > "{scandir}/{protocol}_{port}_ldap_all-entries.txt"' + 'ldapsearch -x -D "" -w """ -p {port} -h {address} -b "dc=example,dc=com" -s sub "(objectclass=*)" 2>&1 | tee > "{scandir}/{protocol}_{port}_ldap_all-entries.txt"' ])