-
Notifications
You must be signed in to change notification settings - Fork 1
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
Dns #45
base: develop
Are you sure you want to change the base?
Conversation
Closes #6 |
README.md
Outdated
@@ -62,10 +62,13 @@ The nettools Lego could be triggered by various prefix. | |||
|
|||
` !ping {target}` | |||
|
|||
#### resolver | |||
#### Resolver |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this the same as nslookup?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The resolver implements nslookup :) i just added the host command to the package so its name changed.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can we alias !nslookup
to the resolver class as well, then? I feel like people would try to use the tool by the name they are more familiar with.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yep, idk when I will have time to patch it but I will do it ASAP
setup.py
Outdated
@@ -18,6 +18,7 @@ | |||
install_requires=['legobot>=1.1.4,<=2.0.0', | |||
'python-whois', | |||
'urllib3', | |||
'dnspython', | |||
'bandit==1.3.0', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The libs we use for testing are not required for the module itself.
Implemented DNS lookup for A, AAAA, CNAME, MX, TXT records.
Rebase develop has been done and the resolver has been changed to nslookup @bbriggs |
No description provided.