Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dnsx: add Spanish translation #12636

Merged
merged 15 commits into from May 11, 2024
38 changes: 38 additions & 0 deletions pages.es/common/dnsx.md
@@ -0,0 +1,38 @@
# dnsx

> Un equipo de herramientas de DNS rápido y multipropósito para ejecutar múltiples consultas DNS.
> Nota: la entrada a `dnsx` necesita ser pasada a través de `stdin` (tubería `|`) en algunos casos.
> Ver también: `dig`, `dog`, `dnstracer`.
> Más información: <https://github.com/projectdiscovery/dnsx>.

- Consulta el registro A de un subdominio y muestra la [re]spuesta recibida:

`echo {{ejemplo.com}} | dnsx -a -re`

- Consulta todos los registros DNS (A, AAAA, CNAME, NS, TXT, SRV, PTR, MX, SOA, AXFR y CAA):

`dnsx -recon -re <<< {{ejemplo.com}}`
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
`dnsx -recon -re <<< {{ejemplo.com}}`
`dnsx -recon -re <<< {{ejemplo.com}}`

Not all shells support here-strings (i.e. <<<). Maybe echo {{ejemplo.com}} | dnsx -recon -re would replace the current example.

Would it be worth documenting shell syntax for command examples in common to aim for portability @kbdharun @kant?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Would it be worth documenting shell syntax for command examples in common to aim for portability @kbdharun @kant?

Yeah

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Definitively yes!


- Consulta un tipo específico de registro DNS:

`echo {{ejemplo.com}} | dnsx -re -{{a|aaaa|cname|ns|txt|srv|ptr|mx|soa|any|axfr|caa}}`

- Muestra s[o]lo la [r]espuesta (no muestra el dominio o subdominio consultado):

`echo {{ejemplo.com}} | dnsx -ro`

- Muestra la respuesta sin procesar una consulta, especificando los solucionado[r]es a utilizar y el número de intentos en caso de haber errores:

`echo {{ejemplo.com}} | dnsx -{{debug|raw}} -resolver {{1.1.1.1,8.8.8.8,...}} -retry {{número}}`

- Aplica fuerza bruta a registros DNS utilizando un marcador de posición:

`dnsx -dominio {{FUZZ.ejemplo.com}} -wordlist {{ruta/a/lista_de_palabras.txt}} -re`

- Aplica fuerza bruta a registros DNS a partir de una lista de [d]ominios y listas de palabras, adjuntando la salida a un archivo sin códigos de [c]olor:

`dnsx -dominio {{ruta/a/dominio.txt}} -wordlist {{ruta/a/lista_palabras.txt}} -re -output {{ruta/a/salida.txt}} -no-color`
kant marked this conversation as resolved.
Show resolved Hide resolved

- Extrae registros `CNAME` desde una lista de subdominios, con una velocidad [l]ímite de consultas DNS por segundo:

`subfinder -silent -d {{ejemplo.com}} | dnsx -cname -re -rl {{número}}`