We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bdd2e3 commit 2404acbCopy full SHA for 2404acb
main.py
@@ -2,7 +2,7 @@
2
'''
3
Author: "BenChanlLOL" on github
4
Name: ConCat
5
-Version: 0.0.3
+Version: 0.0.4
6
7
8
@@ -19,7 +19,6 @@
19
port1 = int(input("what port should we connect to? "))
20
except ValueError as e:
21
print("Please input a real port")
22
- break
23
try:
24
sock.connect((address1, port1))
25
print("connection established")
@@ -55,7 +54,7 @@
55
54
data = sock.recv(1024).decode("utf-8")
56
print(data)
57
elif cmd == "version" or "-v":
58
- print("version: 0.0.3")
+ print("version: 0.0.4")
59
elif cmd == "troubleshoot":
60
print("If you are attempting to ssh using this client a BrokenPipeError is a indicator of wrong password"
61
"When Using SSH a small delay after the first message will occur, then echo the SSH version. "
0 commit comments