Komando lerrorko tresna DNS zerbitzarietatik domeinuko informazioa erauzteko
- Query A, AAAA, MX, NS, TXT, CNAME records
- Reverse lookup and SOA information
- Export results to JSON or plain text
- Git
- Python 3.8+ (or add instructions for your language/runtime)
- Recommended: virtual environment
git clone /home/aitzol/proiektuak/dnsinformazioa
cd dnsinformazioa
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txtBasic usage example:
# single domain
python src/main.py example.com
# multiple domains from a file
python src/main.py --input domains.txt --output results.jsonOptions:
- --input FILE file with domains (one per line)
- --output FILE write results to FILE (json or txt)
- --format FORMAT output format: json | text
- --verbose show detailed query output
Place optional settings in config.yml (resolver, timeout, concurrency). Example:
resolver: 8.8.8.8
timeout: 5
concurrency: 10Run unit tests:
pytest- Fork the repository
- Create a feature branch
- Open a pull request with description and tests
MIT — see LICENSE file.
Open an issue or pull request in this repository for questions or bug reports.