--- name: resolve_dns kind: function lang: go domain: cybersecurity version: "1.0.0" purity: impure signature: "func ResolveDNS(host string) ([]string, error)" description: "Resuelve un hostname a sus direcciones IP usando el resolver DNS del sistema." tags: [cybersecurity, io, dns, resolve, pendiente-usar] uses_functions: [] uses_types: [] returns: [] returns_optional: false error_type: "error_go_core" imports: [fmt, net] params: - name: host desc: "hostname a resolver" output: "slice de strings con direcciones IP resueltas, o error si la resolucion falla" tested: false tests: [] test_file_path: "" file_path: "functions/cybersecurity/resolve_dns.go" ---