We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a68567f commit bbf27ecCopy full SHA for bbf27ec
labtool/console.py
@@ -32,10 +32,6 @@ def terminal ():
32
global ip1
33
print (Fore.GREEN + "ip =>", prompt[2])
34
ip1 = prompt[2]
35
- if prompt[1] == 'port':
36
- global port1
37
- print (Fore.GREEN + "port =>", prompt[2])
38
- port1 = prompt[2]
39
elif prompt[0] == 'use':
40
global use1
41
if prompt[1] == 'headerweb':
@@ -50,7 +46,7 @@ def terminal ():
50
46
if use1 == 'headerweb':
51
47
header.headerweb (ip1)
52
48
if use1 == 'scanports':
53
- scanner.scanports(ip1,port1)
49
+ scanner.scanports(ip1)
54
else:
55
print (Fore.RED + "[*] ERROR")
56
0 commit comments