We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdfafb6 commit b2fe25aCopy full SHA for b2fe25a
1 file changed
nxc/protocols/ldap.py
@@ -874,7 +874,7 @@ def resolve_and_display_hostname(name, domain_name=None):
874
self.logger.info(f"Found domain controllers for trusted domain {trust_name} via DNS:")
875
for srv in srv_records:
876
dc_hostname = str(srv.target).rstrip(".")
877
- self.logger.success(f"Found DC in trusted domain: {dc_hostname}")
+ self.logger.success(f"Found DC in trusted domain: {colored(dc_hostname, host_info_colors[0], attrs=['bold'])}")
878
self.logger.highlight(f"{trust_name} -> {direction_text} -> {trust_attributes_text}")
879
resolve_and_display_hostname(dc_hostname)
880
except Exception as e:
0 commit comments