Displaying 20 results from an estimated 2000 matches similar to: "OpenSSH 7.7 t1 script breakage"
2018 Apr 12
3
OpenSSH 7.7 t1 script breakage
On 13 April 2018 at 08:29, Josh Soref <jsoref at gmail.com> wrote:
> Randall S. Becker <rsbecker at nexbridge.com> wrote:
>>
>>
>> -REGRESSTMP = "$(PWD)/regress"
>> +REGRESSTMP = `pwd`
>>
>> tests interop-tests t-exec unit: regress-prep regress-binaries $(TARGETS)
>
>
> It looks like the problem is that pwd is in uppercase, not
2018 Apr 13
2
OpenSSH 7.7 t1 script breakage
On Thu, Apr 12, 2018 at 6:29 PM, Josh Soref <jsoref at gmail.com> wrote:
> Randall S. Becker <rsbecker at nexbridge.com> wrote:
>
>>
>> -REGRESSTMP = "$(PWD)/regress"
>> +REGRESSTMP = `pwd`
>>
>> tests interop-tests t-exec unit: regress-prep regress-binaries $(TARGETS)
>>
>
> It looks like the problem is that pwd is in
2018 Apr 12
4
OpenSSH 7.7 t1 script breakage
After getting OpenSSH 7.7 to build :), the initial test fails as follows:
test_kex:
............................................................................
............................................................................
............................................................................
............................................................................
2015 Feb 27
2
remote-remote scp
Hi everyone,
I know scp is kind of the red-headed stepchild of the suite, but I'd like to propose an extension to the syntax for remote-remote passthrough using the "-3" option.
Currently the syntax is essentially
scp -3 [ -P port ] [user@]host1:file [user@]host2:file
This is great, as long as both remotes are on the same port. It causes difficulties if host1 and host2 are not
2016 Aug 09
3
Equivalent ssh_config setting for "ssh -N"
Oops. That's -T. From the man page, it doesn't really look like there's an ssh_config option for -N.
-----Original Message-----
From: openssh-unix-dev [mailto:openssh-unix-dev-bounces+scott_n=xypro.com at mindrot.org] On Behalf Of Scott Neugroschl
Sent: Tuesday, August 09, 2016 1:04 PM
To: Volker Diels-Grabsch; openssh-unix-dev at mindrot.org
Subject: RE: Equivalent ssh_config
2015 Jul 22
7
Keyboard Interactive Attack?
I read an article today about keyboard interactive auth allowing bruteforcing.
I'm afraid I have minimal understanding of what keyboard-interactive really does. What does it do, and should I have my clients set it to off in sshd_config?
---
Scott Neugroschl | XYPRO Technology Corporation
4100 Guardian Street | Suite 100 |Simi Valley, CA 93063 | Phone 805 583-2874|Fax 805 583-0124 |
2008 Aug 21
2
IP options
I'm seeing something similar to bug 1179
(https://bugzilla.mindrot.org/show_bug.cgi?id=1179), even with the
reordered IP options check.
For some reason, getsockopt is returning an IP options of length 2,
value 00 00.
Would Mark Weindling's original patch
(https://bugzilla.mindrot.org/attachment.cgi?id=1105) break anything if
I incorporated it?
Platform: HP NonStop S7000 series
2010 Apr 15
4
Limit number of connections per user?
I'm working from modified 5.0p1 codebase.
What I'm looking for is a mechanism to limit the number of simultaneous
connections on a per-user/IP basis.
That is, disallow multiple simultaneous logins/authentication of the
same user from different IP addresses.
e.g.:
fred from 10.1.1.1 - accept
fred from 10.1.1.2 -- reject while fred is still connected from 10.1.1.1
fred from 10.1.1.1 - OK
2009 Aug 31
1
mput/mget misbehavior
A couple of notes about mget/mput in SFTP (5.1p1).
1. They aren't documented in the SFTP man page
2 They misbehave --
"mput a.txt b.txt" copies a.txt to b.txt on the server
"mput *.txt b.txt" copies the first wildcard match to b.txt on
the server
"mput a.txt b.txt c.txt" copies a.txt to b.txt on the server
"mput a.txt
2009 Oct 26
1
SCP
I'm using 5.0p1 (Yeah, yeah. I know.). For various reasons, I am unable
to upgrade to the latest and greatest, which probably would solve my
problem.
Here's my question.
When doing an scp from remote to local (e.g.: scp user at host:remote
localfile), is there any way to specify the path to the remote scp? Or
do I have to patch the code to allow it?
----
Scott
2014 Mar 06
2
Without OpenSSL?
Quoth Iain:
>I'm not sure if the work being done to allow OpenSSH to be built without OpenSSL includes SHA-1 support.
Hi Iain. I haven't heard of this effort before. Can you give a few more details?
Thanks,
ScottN
---
Scott Neugroschl | XYPRO Technology Corporation
4100 Guardian Street | Suite 100 |Simi Valley, CA 93063 | Phone 805 583-2874|Fax 805 583-0124 |
2017 Apr 21
2
Include for sshd_config
On Thu, Apr 20, 2017 at 11:00 AM, Scott Neugroschl <scott_n at xypro.com> wrote:
>
> On Wed, Apr 19, 2017 at 1:02 PM, navern <livingdeadzerg at yandex.ru> wrote:
>
>> Is there any available tool with this for pre-evaluating the resulting sshd_config for fatal errors? I'm not demanding: I'm thinking "that could be really, really useful".
>
>
2013 Sep 24
1
Port Knocking?
I haven't been keeping up with the internals, I'm afraid. Does OpenSSH have support for Port Knocking?
I might be interested in looking into that, as a way of reacquainting myself with the current code base.
---
Scott Neugroschl | XYPRO Technology Corporation
4100 Guardian Street | Suite 100 |Simi Valley, CA 93063 | Phone 805 583-2874|Fax 805 583-0124 |
2015 Feb 06
3
Re: Creating users "on - the - fly"
>> However - as I got into that - I realized that I have no way to "find"
>> just the keys for a single user. Since the only argument to that ssh
>> keys command, is the username. It's not HTTP so I couldn't point at a
>> subdomain and use that to look up the information.
>You may be interested in the bug report "extend the parameters to the
2015 Jul 22
2
Keyboard Interactive Attack?
You need to disable ?ChallengeResponse? (aka keyboard-interactive) authentication, not password authentication, to protect against this attack.
On Jul 22, 2015, at 1:56 PM, Bostjan Skufca <bostjan at a2o.si> wrote:
>
> And to answer your question about what to do, you have three options:
> - disable access to ssh with a firewall
> - disable password authentication
> -
2016 Aug 09
4
Equivalent ssh_config setting for "ssh -N"
Dear OpenSSH developers,
Is there an equivalent ssh_config setting for the command line option
ssh -N ...
?
I want to connect to a server that doesn't provide an interactive
shell but allows for port forwarding only. I'd love to configure
this into my ~/.ssh/config as follows:
Host foo
Hostname ...
Port ...
User ...
LocalForward ...
2012 Oct 23
4
Disable rm on sftp
Hi,
Thanks a lot for this great software :)
I'm trying to do something to secure my server. I need to disable removing
file or removing directory using SFTP. In other words, the user can only
write, move but not delete the file. This will be used to store logs so, I
need to make sure once the logs written to my server the user cannot remove
it.
I tried doing this by changing the code of
2013 Jun 04
1
PTY allocation?
I'm running a 5.0p1 derivative SSH server (that for various reasons I
can not upgrade), on a host system that does not support PTYs.
Attempts to connect to that sshd via sftp are failing due to an
inability to allocate a pty. I can't really see a reason that an sftp
session requires a pty. Is this addressed in later versions? Should
I patch my system to avoid even trying to
2015 Apr 01
3
What did I miss when building openssh? cannot generate ecdsa key
I am assuming this is a user error (and the bug, if any is in configure not
telling me how to activate it).
I regularly see a message:
Could not load host key: /etc/ssh/ssh_host_ecdsa_key
And, obviously, I have never made the key before.
I tried the following:
./ssh-keygen -t ecdsa -fssh_host_esdsa_key -N ""
unknown key type ecdsa
However, the syntax says it is a known type
root at
2018 Apr 10
4
Signed SSH key issue with OpenSSH6.4p1
Hi All,
Please pardon me if it is the wrong list to ask how-to etc.
I am having an issue with the Signed SSH keys. I am being asked for the
passphrase for my signed public key, even though I don't have any.
I am running CentOS7 with OpenSSH_6.4p1, OpenSSL 1.0.1e-fips 11 Feb 2013.
1) I have ca server with ca user keys (ca-user-key.pub)
2) I created user ssh rsa keys (user-id-org and