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
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# dnsx

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

- Consulta el registro A de un (sub)dominio y muestra la [re]spuesta recibida:
kant marked this conversation as resolved.
Show resolved Hide resolved

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

- Consulta todos los registros DNS (A,AAAA,CNAME,NS,TXT,SRV,PTR,MX,SOA,AXFR,CAA):
kant marked this conversation as resolved.
Show resolved Hide resolved

`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}}`

- Salida s[o]lo [r]espuesta (no muestra el dominio o subdominio consultado):
kant marked this conversation as resolved.
Show resolved Hide resolved

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

- Muestra la respuesta sin procesar de una consulta, especificando los solucionado[r]es a utilizar y los intentos de reintentos en caso de error:
kant marked this conversation as resolved.
Show resolved Hide resolved

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

- Fuerza bruta de registros DNS utilizando un marcador de posición:
kant marked this conversation as resolved.
Show resolved Hide resolved

`dnsx -dominio {{FUZZ.ejemplo.com}} -wordlist {{ruta/a/lista_palabras.txt}} -re`
kant marked this conversation as resolved.
Show resolved Hide resolved

- Registros DNS de fuerza bruta a partir de una lista de [d]ominios y listas de palabras, adjuntando la salida [o] a un archivo sin códigos de [c]olor:
kant marked this conversation as resolved.
Show resolved Hide resolved

`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 la lista dada de subdominios, con una velocidad [l]imitante de consultas DNS por segundo:
kant marked this conversation as resolved.
Show resolved Hide resolved

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