fixing print issue in scan port
This commit is contained in:
parent
59dc43ecbb
commit
f296624b56
|
@ -877,7 +877,7 @@ class portscan():
|
||||||
pass
|
pass
|
||||||
self.lock.release()
|
self.lock.release()
|
||||||
if len(openports) > 0:
|
if len(openports) > 0:
|
||||||
self.print_("%s%s%s - %sFound open ports:%s %s%s%s"%(G,host,W,R,W,Y,', '.join(openports),W))
|
print("%s%s%s - %sFound open ports:%s %s%s%s"%(G,host,W,R,W,Y,', '.join(openports),W))
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
for subdomain in self.subdomains:
|
for subdomain in self.subdomains:
|
||||||
|
|
Loading…
Reference in New Issue