Added some stuff to TODO
This commit is contained in:
parent
6de6d2af0e
commit
1957276a23
5
HTTPy.py
5
HTTPy.py
@ -1,6 +1,6 @@
|
|||||||
import subprocess
|
import subprocess
|
||||||
import re # YAY REVERSE ENGINEER... wait its just regex
|
import re # YAY REVERSE ENGINEER... wait its just regex
|
||||||
|
import readline
|
||||||
#Made this work with linux magic, test
|
#Made this work with linux magic, test
|
||||||
|
|
||||||
inInput = ""
|
inInput = ""
|
||||||
@ -8,7 +8,7 @@ partDomain = ""
|
|||||||
running = 1
|
running = 1
|
||||||
pingOn = "P"
|
pingOn = "P"
|
||||||
whoOn = "W"
|
whoOn = "W"
|
||||||
phrases = ["ping", "whois", "quit", "clear", "help"]
|
phrases = ["ping", "whois", "quit", "clear", "help", "nameserver"]
|
||||||
|
|
||||||
def printHelp():
|
def printHelp():
|
||||||
print "========================================================"
|
print "========================================================"
|
||||||
@ -157,3 +157,4 @@ while running == 1:
|
|||||||
dig(inInput, "SRV")
|
dig(inInput, "SRV")
|
||||||
soaRec = dig(inInput, "SOA")
|
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: 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
|
#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 Linux superiority mode :D, Removed win compat entirely
|
||||||
|
|
||||||
#Complete: Add shell after lookup
|
#Complete: Add shell after lookup
|
||||||
|
|
||||||
#TODO: LEARN REGEX
|
#Implemented what i wanted to: LEARN REGEX
|
||||||
|
|
||||||
#Completed: ADD GEOIP LOOKUPS + HOST COMMAND
|
#Completed: ADD GEOIP LOOKUPS + HOST COMMAND
|
||||||
|
|
||||||
|
#TODO: Use Ausregistry for .au lookups '-h whois.ausregistry.com.au'
|
||||||
|
|
||||||
#TODO: Add extra nice features
|
#TODO: Add extra nice features
|
||||||
#Full DNS record lookup
|
#Full DNS record lookup
|
||||||
#COMPANY Nameserver identifier
|
#COMPANY Nameserver identifier
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user