Added some stuff to TODO
This commit is contained in:
parent
6de6d2af0e
commit
1957276a23
7
HTTPy.py
7
HTTPy.py
@ -1,6 +1,6 @@
|
||||
import subprocess
|
||||
import re # YAY REVERSE ENGINEER... wait its just regex
|
||||
|
||||
import readline
|
||||
#Made this work with linux magic, test
|
||||
|
||||
inInput = ""
|
||||
@ -8,7 +8,7 @@ partDomain = ""
|
||||
running = 1
|
||||
pingOn = "P"
|
||||
whoOn = "W"
|
||||
phrases = ["ping", "whois", "quit", "clear", "help"]
|
||||
phrases = ["ping", "whois", "quit", "clear", "help", "nameserver"]
|
||||
|
||||
def printHelp():
|
||||
print "========================================================"
|
||||
@ -156,4 +156,5 @@ while running == 1:
|
||||
test = dig(inInput, "NS")
|
||||
dig(inInput, "SRV")
|
||||
soaRec = dig(inInput, "SOA")
|
||||
print compareSOA(test, inInput, soaRec)
|
||||
print compareSOA(test, inInput, soaRec)
|
||||
print '\n'
|
||||
11
TODO
11
TODO
@ -1,19 +1,22 @@
|
||||
#TODO: Trim unwanted data, it is setup as a string now :D
|
||||
#Completed: Trim unwanted data, it is setup as a string now :D
|
||||
#BUGFIX: .uk domains break it
|
||||
|
||||
#TODO: Add input to ask domain - Kinda implemented, needs work and validation
|
||||
|
||||
#TODO: Implement TLD/gTLD lists to check against.
|
||||
|
||||
#Unneeded: Implement TLD/gTLD lists to check against.
|
||||
P
|
||||
#Invalid now: Add the ability to use the command line args to input the domain name
|
||||
|
||||
#Complete: Add Linux superiority mode :D, Removed win compat entirely
|
||||
|
||||
#Complete: Add shell after lookup
|
||||
|
||||
#TODO: LEARN REGEX
|
||||
#Implemented what i wanted to: LEARN REGEX
|
||||
|
||||
#Completed: ADD GEOIP LOOKUPS + HOST COMMAND
|
||||
|
||||
#TODO: Use Ausregistry for .au lookups '-h whois.ausregistry.com.au'
|
||||
|
||||
#TODO: Add extra nice features
|
||||
#Full DNS record lookup
|
||||
#COMPANY Nameserver identifier
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user