search for: packet_inject_ignore

Displaying 4 results from an estimated 4 matches for "packet_inject_ignore".

2004 Sep 21
1
SFTP is prompting for password
...tinue: publickey,password debug2: we did not send a packet, disable method debug3: authmethod_lookup password debug3: remaining preferred: keyboard-interactive debug3: authmethod_is_enabled password debug1: next auth method to try is password redbrick at ctss91.sgp.xxx.com's password: debug2: packet_inject_ignore: current 53 debug2: packet_inject_ignore: block 16 have 4 nb 4 mini 1 need 4 debug2: we sent a password packet, wait for reply debug1: authentications that can continue: publickey,password Permission denied, please try again. redbrick at ctss91.sgp.xxx.com's password: debug2: packet_inject_ig...
2001 May 04
1
2.9: RSAAuthentication problems
...o such identity: /home/phil/.ssh/id_dsa debug2: we did not send a packet, disable method debug3: authmethod_lookup password debug3: remaining preferred: keyboard-interactive debug3: authmethod_is_enabled password debug1: next auth method to try is password phil at localhost's password: debug2: packet_inject_ignore: current 49 debug2: packet_inject_ignore: block 16 have 4 nb 4 mini 1 need 4 debug2: we sent a password packet, wait for reply debug1: authentications that can continue: publickey,password,keyboard-interactive Permission denied, please try again. phil at localhost's password: debug2: packet_in...
2001 Nov 09
4
keystroke timing attack
I'm reading this fine article on O'Reilly: http://linux.oreillynet.com/lpt/a//linux/2001/11/08/ssh_keystroke.html <quote> The paper concludes that the keystroke timing data observable from today's SSH implementations reveals a dangerously significant amount of information about user terminal sessions--enough to locate typed passwords in the session data stream and reduce the
2001 Aug 20
1
Idletimeout patch, third attempt
..._poll(); } xfree(setp); diff -ru openssh-2.9p2.orig/packet.h openssh-2.9p2/packet.h --- openssh-2.9p2.orig/packet.h Sun Apr 15 02:13:03 2001 +++ openssh-2.9p2/packet.h Mon Aug 20 23:36:10 2001 @@ -220,4 +220,20 @@ /* add an ignore message and make sure size (current+ignore) = n*sumlen */ void packet_inject_ignore(int sumlen); +/* This sets the maximum idle time before packet_select() automatically + * disconnects with packet_disconnect("Idletimeout"). + * Never autodisconnects if set to zero. zero is the default */ +void packet_set_idletimeout(int max_idle_seconds); + +/* This is an quite no...