Syborg
Syborg copied to clipboard
Recursive DNS Subdomain Enumerator with dead-end avoidance system (BETA)
```python syborg.py:60: DeprecationWarning: please use dns.resolver.resolve() instead answers = dns.resolver.query(domain) calling appenddataset1 syborg.py:73: DeprecationWarning: please use dns.resolver.resolve() instead answers = dns.resolver.query(domain) ``` ```bash $ python3 --version Python 3.7.3 ```
Hello, I think the "Syborg" tool uses a single DNS server. ``` python3 syborg.py -d 4.4.4.4 google.com ``` It would be nice if syborg could use a multi-resolver. ``` python3...
Need a parameter like `--depth` that specifies how deep does cyborg go to resolve subdomains.
It seems that whenever a file is not closed properly and the script is terminated with with `ctrl+z`, the script gets killed but python still runs in the background. The...
Hello, Currently Syborg relies on Queue DS for traversing through subdomains. The results are based on BFS. However, we should probably also add a stack based implementation that can go...