diff options
| author | Carson Fleming <cflems@cflems.net> | 2023-01-14 14:01:01 -0800 |
|---|---|---|
| committer | Carson Fleming <cflems@cflems.net> | 2023-01-14 14:01:01 -0800 |
| commit | a25c2a083a79932271a808394ecd2c522b140403 (patch) | |
| tree | 0b44417869f0d7d43a57c9089edf1f9cf446477b | |
| parent | 533b217fdff44349b8310c0f8bc75b085519142c (diff) | |
| download | pk-a25c2a083a79932271a808394ecd2c522b140403.tar.gz | |
Dont send prompt after exiting PTY mode; TCP stacks it and causes strange behavior
| -rw-r--r-- | pkcli_stub.py | 1 | ||||
| -rw-r--r-- | pkctl.py | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/pkcli_stub.py b/pkcli_stub.py index a5511bf..476636d 100644 --- a/pkcli_stub.py +++ b/pkcli_stub.py @@ -187,7 +187,6 @@ def work(h_addr, port, privkey, bits): if not run_pty(sock, screen_is, screen_os): return True screen_os.send(b'\xc0\xdenpty') - send_encrypted(sock, PS1, rpubkey['e'], rpubkey['n'], bits=bits) continue else: try: @@ -121,8 +121,6 @@ def attach_cmd(): tty.tcsetattr(sys.stdin.fileno(), tty.TCSAFLUSH, stdin_mode) pty_mode = False print('turned off pty mode due to npty command') - if len(data) > 6: - pnnl(str(data[6:], 'utf-8')) elif not pty_mode and data == b'\xc0\xdepty': pty_mode = True stdin_mode = tty.tcgetattr(sys.stdin.fileno()) |
