Merge pull request #4 from touhidshaikh/master
Record Line and Error line Colour Changed
This commit is contained in:
commit
e5700ae8a5
|
|
@ -1030,8 +1030,8 @@ def main(domain, threads, savefile, ports, silent, verbose, enable_bruteforce, e
|
||||||
|
|
||||||
|
|
||||||
# Method code added
|
# Method code added
|
||||||
cnames = ['== CNAME records ==']
|
cnames = ['\033[94m== CNAME records ==\033[0m']
|
||||||
ahosts = ['== A records ==']
|
ahosts = ['\033[94m== A records ==\033[0m']
|
||||||
|
|
||||||
|
|
||||||
def lookup(guess, name_server):
|
def lookup(guess, name_server):
|
||||||
|
|
@ -1055,7 +1055,7 @@ def lookup(guess, name_server):
|
||||||
exit()
|
exit()
|
||||||
except:
|
except:
|
||||||
# probably socket timed out
|
# probably socket timed out
|
||||||
print("ERROR - possible socket timeout when trying " + guess + ' at server ' + name_server)
|
print(R + "ERROR - possible socket timeout when trying " + guess + ' at server ' + name_server + W)
|
||||||
pass
|
pass
|
||||||
if response:
|
if response:
|
||||||
if debug:
|
if debug:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue