search for: congreet

Displaying 6 results from an estimated 6 matches for "congreet".

Did you mean: concrete
2015 Jan 27
0
[Bug 1213] ssh-keyscan exits in mid-way
...fffde10) at ../packet.c:1330 #3 0x00007ffff7fa69f5 in ssh_dispatch_run (ssh=0x7ffff86f4520, mode=0, done=0x7ffff8207178, ctxt=0x7ffff86f4520) at ../dispatch.c:101 #4 0x00007ffff7f85aef in keygrab_ssh2 (c=0x7ffff8207160) at ../ssh-keyscan.c:292 #5 0x00007ffff7f86e99 in congreet (s=149) at ../ssh-keyscan.c:501 #6 0x00007ffff7f86f34 in conread (s=149) at ../ssh-keyscan.c:516 #7 0x00007ffff7f873b5 in conloop () at ../ssh-keyscan.c:587 #8 0x00007ffff7f874cf in do_host ( host=0x7fffffffe27b "foobaz.internal.example.com,X.Y.Z.W") at ../s...
2015 Jan 30
0
[Bug 1213] ssh-keyscan exits in mid-way
...ffde10) at ../packet.c:1313 #2 0x00007ffff7fa669b in ssh_dispatch_run (ssh=0x7ffffb6e9cb0, mode=0, done=0x7ffff8207d78, ctxt=0x7ffffb6e9cb0) at ../dispatch.c:101 #3 0x00007ffff7f84cef in keygrab_ssh2 (c=0x7ffff8207d60) at ../ssh-keyscan.c:293 #4 0x00007ffff7f860ba in congreet (s=213) at ../ssh-keyscan.c:503 #5 0x00007ffff7f86155 in conread (s=213) at ../ssh-keyscan.c:518 #6 0x00007ffff7f865d6 in conloop () at ../ssh-keyscan.c:589 #7 0x00007ffff7f866f0 in do_host ( host=0x7fffffffe27c "blarg.internal.example.com,A.B.C.D") at ../ss...
2004 Mar 07
1
[Bug 809] ssh-keyscan breaks too obscurely when remote isn't an SSH server
...an.org When you ask ssh-keyscan to scan something that isn't an SSH server, it sometimes fatals before scanning the rest of the list, rather than printing a debug message and continuing as it's supposed to. This appears to be because remote_major and remote_minor aren't initialized in congreet(), so if the sscanf() for the SSH version banner fails then they just contain whatever happens to be on the stack. A patch will follow in a moment. ------- Additional Comments From cjwatson at debian.org 2004-03-07 23:52 ------- Created an attachment (id=570) --> (http://bugzilla.mindrot.org...
2005 Aug 09
1
[Bug 1067] ssh-keyscan does not work with F-Secure SSH 3.2.0 sometimes
...arnings down the connection stream, so when you do a ssh connect you will have a response like: sshd2[4036]: WARNING: Configuration option SshPAMClientPath is deprecated. sshd2[4036]: WARNING: DNS lookup failed for "1.1.1.1". SSH-2.0-3.2.0 F-SECURE SSH ssh-keyscan, in the function "congreet" only examines the first line for the SSH banner. This is different behaviour to the ssh connect command (which checks all lines in the first 256 bytes) for the SSH banner. Because of this you cannot use ssh-keyscan against hosts running this flavour of SSH unless all of the warnings are clea...
2002 Jan 22
2
ssh-keyscan: xmalloc out of memory error
hi all, I got "xmalloc: out of memory" when i used ssh-keyscan to a remote host that is using SSH protocol 2 and only protocol 2 (no fallback to SSH protocol 1). Looks to me more like ssh-keyscan doesn't talk SSH protocol 2 to the server. Please help. Here is the exact error: # /usr/local/bin/ssh-keyscan -v miad_1 # miad_1 SSH-2.0-OpenSSH_3.0.2p1 xmalloc: out of memory
2001 Jul 27
0
Updated ssh-keyscan patch for ssh2 support
...;fdcon[s]; - char *iname, *oname; - iname = xstrdup(c->c_namelist); - oname = xstrdup(c->c_output_name); + ret = conalloc(c->c_namelist, c->c_output_name, c->c_keytype); confree(s); - ret = conalloc(iname, oname); - xfree(iname); - xfree(oname); return (ret); } static void congreet(int s) { - char buf[80], *cp; + char buf[256], *cp; size_t bufsiz; int n = 0; con *c = &fdcon[s]; @@ -414,12 +493,34 @@ } *cp = '\0'; fprintf(stderr, "# %s %s\n", c->c_name, buf); - n = snprintf(buf, sizeof buf, "SSH-1.5-OpenSSH-keyscan\r\n"); + if (c...