Re: [VOTE] MINA SSHD relocation of Apache git repositories on git-wip-us.apache.org

2019-01-03 Thread Lyor Goldstein
>> +1 for me Unless someone objects, I think we should move all mina repositories. +1 for me as well How do we got about to provide the required "proof" that the vote has been taken ? Who else needs to vote and how do we record it in the JIRA issue ? I am going to be unavailable for the next 3

Re: Re: [VOTE] MINA relocation of Apache git repositories on git-wip-us.apache.org

2019-01-12 Thread Lyor Goldstein
>> The repositories have been migrated. >> Please update the main pom to point to the new locations. Done.

Re: SSHD 2.1 version ?

2018-09-14 Thread Lyor Goldstein
Hi Guillaume, If you have not cut out a release version, then all is well, otherwise, I apologize for the inconvenience, but please include the fix I just committed for SSHD-843. Thanks again, Lyor G.

Re: [VOTE] Release Mina SSHD 2.1.0

2018-09-17 Thread Lyor Goldstein
+1

Re: Building a reverse proxy based on SSHDa

2019-01-28 Thread Lyor Goldstein
1) When will there be a maven release for the current snapshot status? If there are no unforeseen problems I hope that by start of February we will release 2.2.0 2) Does anybody have the time to check my code at GitHub for obvious „Oh my god“ hints - I guess I use SSHD pretty unconventional…

Re: Apache SSHD 2.2.0 release ?

2019-01-28 Thread Lyor Goldstein
>> Would it be possible to have a 2.2.0 release in the maven repo by mid-February? I'd very much like to upgrade the integration in Eclipse's JGit/EGit to 2.2.0 for _our_ next release, which will be 5.3.0 on March 20, 2019. I would need a published sshd release at the latest about a month earlier

Re: SshServer timeout and readBufferSize setting

2019-04-04 Thread Lyor Goldstein
>> I would like to know if there are anyone that can point me in a direction of configuring the: Session Timeout and the Session readBufferSize when using SSHD. I followed the 5 minute guide and got a server running. I can login and everything works. There are several configuration options

Re: SshClient usage question

2019-03-02 Thread Lyor Goldstein
Our recommendation is definitely to have *one* SshClient instance throughout the application and (re-)use it to create as many SSH sessions as needed, public static void main(String[] args) { SshClient client = ... initialize the client ... client.start(); try { ...run the application

[ANNOUNCE] Apache SSHD 2.2.0 released

2019-02-21 Thread Lyor Goldstein
The Apache SSHD project is pleased to announce the release of SSHD 2.2.0 version. Apache SSHD is a 100% pure java library to support the SSH protocols on both the client and server side. This library can leverage Apache MINA and also Netty - scalable and high performance asynchronous I/O

Re: [SSHD] Tests failure with MINA 2.0.20

2019-02-21 Thread Lyor Goldstein
Hi Emmanuel, The log messages seem to be incomplete - anyway, I will try and find some time to test this version (I am a bit swamped at the moment..). Lyor ---. Hi guys, yesterday evening, I cut a MINA 2.0.20 release (vote to come). Then I tested it

FSYNC options in SSHD code for SFTP/SCP ?

2019-03-03 Thread Lyor Goldstein
Hi, I have recently completed SSHD-904 and SSHD-905 that provide the option to make sure that transferred data is synchronized with the local file system (a.k.a. 'fsync'). This makes sure that if another process accesses the updated files shortly after having been copied/updated either through

Re: SSHD-871 + SSHD-872 - splitting the documentation files - feedback ...

2019-02-08 Thread Lyor Goldstein
>> I think it's easier to read, maybe we should have a list of links instead of titles, so that everything does not look like titles. Personally, I prefer the titles that lead to the documentation via the links since they give the user an idea as to what the link contains. I am still looking

Re: Channe is closing before file is getting uploaded.

2019-02-18 Thread Lyor Goldstein
It may be the case that you are running out of nio2 worker threads, or memory or buffers - trying to transmit so many concurrent files puts a lot of pressure on the memory and I/O. Trying increasing the "nio2-workers" configuration value: SshClient client = ...

Release SSHD 2.2.0 ?

2019-01-30 Thread Lyor Goldstein
Hi, I believe we have accumulated a respectable amount of new features and/or bug fixes to warrant releasing a new version of SSHD. Some of the features are eagerly awaited by our users - e.g., https://bugs.eclipse.org/bugs/show_bug.cgi?id=541425, bcrypt encrypted key files (SSHD-708). Therefore,

Any progress on SSHD 2.2.0 release ?

2019-02-04 Thread Lyor Goldstein
In this context, please dis-regard any work-in-progress you might see on SSHD issues - the new code is definitely *not* intended to be included in the up-coming release, so no need to wait for them. One important item though - once we publish 2.2.0, we need to make sure that sshd-osgi sources JAR

SSHD-871 + SSHD-872 - splitting the documentation files - feedback ?

2019-02-05 Thread Lyor Goldstein
I would appreciate your feedback on the attempt - see https://github.com/lgoldstein/mina-sshd/tree/SSHD-882 as an example of how it would look. Thanks

Re: [VOTE] Release Apache Mina SSHD 2.2.0

2019-02-04 Thread Lyor Goldstein
+1 :-) Lyor

Re: Information required on Asynchronous file transfer using SCP on Apache SSHD

2019-02-05 Thread Lyor Goldstein
I see no a-priori reason why one should not be able to run multiple SCP upload/downloads over a single session: try (ClientSession session = client.connect(...) ,verify(...timeout...) .getSession()) { session.addPassword(...) / addKey(...);

Re: commands filter

2019-04-08 Thread Lyor Goldstein
>> is it possibleto filter remote commands, i.e. I want to reject to execute some dangerous commands like "rm" Seems relatively straightforward - since you are a proxy, then I assume you present your "server" face to the potential clients whose dangerous commands you want to filter. There are

Re: SSH client authentication using SSH_AUTH_SOCK environment variable

2019-04-18 Thread Lyor Goldstein
>> I wonder if currently SshClient class supports authentication via ssh-agent [2] configured via SSH_AUTH_SOCK environment variable? The code seems to indicate that we do support this, though we have not had much experience using this - see org.apache.sshd.agent.SshAgent class implementations

Re: How to identify partially uploaded files.

2019-04-14 Thread Lyor Goldstein
>> how can I identify partially uploaded files on the server? There is no such term as "partially uploaded" when a file is copied via SFTP to a server. The server is not told ahead of time how much data to expect - the client simply opens a file (for write) and writes data at successive offsets.

RE: channel request

2019-06-16 Thread Lyor Goldstein
>> How do I set it? Is it better solution then the idletimeout ? See https://github.com/apache/mina-sshd/blob/master/docs/client-setup.md#keeping-the-session-alive-while-no-traffic Also: https://github.com/apache/mina-sshd/blob/master/docs/client-setup.md#running-a-command-or-opening-a-shell

RE: channel request

2019-06-16 Thread Lyor Goldstein
who implements it and how 4. Rifle through the unit tests in the source code and get a sense of how to work with the code - specifically *PropertyResolverUtils* and its usage hanks for both but no example anywhere on how to actual set it/ Dor -Original Message- From: Lyor

RE: channel request

2019-06-16 Thread Lyor Goldstein
l" channel You are right. What shall I do? -----Original Message- From: Lyor Goldstein Sent: Sunday, June 16, 2019 6:57 PM To: dev@mina.apache.org Subject: RE: channel request >> I took this code https://github.com/oVirt/ovirt-engine/blob/master/backend/manager/modules/uutils/src/ma

Re: channel question

2019-06-11 Thread Lyor Goldstein
>> Suppose my scripts needs the profile to run at the beginning. I am not sure what "profile" you mean - in the context of SSH there is no such concept. If you mean the ".profile" file (or something similar) that "runs" automatically when you login, then it depends on the definitions of your

RE: channel question

2019-06-13 Thread Lyor Goldstein
>> How or can I hold the channel open ? Channels are auto-closeable - i.e., try-with-resource can be used. In other words, it won't close on your end unless you close it. However: >> It seems that once I create and open and actually use the channel, it is being closed without my knowledge. You

Re: sshclient pool

2019-06-23 Thread Lyor Goldstein
>> Wanted to advice with you. I have couple of linux instances and I want to hold or keep in memory couple of sshclient Not sure I understand what you mean - basically, unless extremely special requirements/circumstances one needs only one SshClient instance per application. One instance can be

Re: Sshclient pool

2019-06-23 Thread Lyor Goldstein
>> Do you have an example for such implementation ? What do you mean ? The code is simple: // Do this ONCE in 'main' SshClient client = setup..and..initialize client.start(); // wherever in the code and as many times a necessary - including concurrently try (ClientSession session =

Re: sshclient pool

2019-06-23 Thread Lyor Goldstein
>> When you are saying multiple sessions, you mean, I can have one instance with > 1 different sessions to different linux instances with different credentials ? A single SshClient instance can create virtually infinite number of sessions each with a different server (including different ports),

Please review suggested PR for SSHD-912

2019-04-30 Thread Lyor Goldstein
https://github.com/apache/mina-sshd/pull/102 This PR involves some changes to very crucial mutual exclusion and signalling locks so I would like to be sure that (a) nothing was missed and (b) no deadlocks were introduced (beyond what SSHD-911 and SSHD-912 seem to indicate) For those who want -

Re: [mina-sshd] Restricting ShellFactory based on the user

2019-05-04 Thread Lyor Goldstein
>> I've ran into an issue whereby my SSHD cannot bind to any port! >> Have you by chance ever seen this issue before? No, does not ring a bell >> I don't believe for one moment it is the mina-sshd code Neither do I >> Hopefully it is something obvious that I'll spot soon. Perhaps some kind

Re: [mina-sshd] Restricting ShellFactory based on the user

2019-05-06 Thread Lyor Goldstein
>> If I've not take too much of your time already. How do you recommend that I reject a shell? At the moment, I just threw an Unchecked exception - it works, but I'm not sure if I should do something else for 'niceness' sake. There might be something "nicer" - off the top my head though

Re: Q: release SSHD 2.3.0 ?

2019-07-04 Thread Lyor Goldstein
>> I'll put that on my todo list ;-) I should be able to find some time before the end of the week. Great, thanks...

Re: [VOTE] Release Apache Mina SSHD 2.3.0

2019-07-10 Thread Lyor Goldstein
+1

Re: Q: release SSHD 2.3.0 ?

2019-07-08 Thread Lyor Goldstein
The change list is completed - CHANGES.md shows the latest changes as of last release - 2.2.0 in this case - i.e. all changes from 2.2.0 towards 2.3.0. The 2.2.0 file shows the changes from 2.1.0 to 2.2.0. Once you release 2.3.0, I will create a separate file for the 2.2.0 to 2.3.0 changes

Re: commands filter

2019-04-10 Thread Lyor Goldstein
>> how to treat the arrow keys or any other more effective method could audit the commands Arrow keys are quite tricky to handle and I cannot offer a tried-and-tested approach to it. Basically, you need to handle several issues: * Detect arrow keys - very tricky since they are usually a

Re: SSHD issue post upgrade from 1.6.0 to 2.1.0

2019-04-17 Thread Lyor Goldstein
I don't really have a lot of experience with the scripting - but we provide both a Linux and Windows ssh.sh/bat so you can use them and they should work fine (see https://github.com/apache/mina-sshd/tree/master/assembly/src/main/distribution/bin ). Off the top of my head I would say that you are

Re: PKCS11 for SSHD

2019-09-10 Thread Lyor Goldstein
We do not have any current PKCS11 support in MINA SSHD. We do support SSH agents in general, so one could add the necessary support - Java even seems to have some PKCS11 support in it ( https://docs.oracle.com/javase/7/docs/technotes/guides/security/p11guide.html) but I have never looked into it.

Re: Synchronizing the Apache Mina client connection between threads

2019-07-30 Thread Lyor Goldstein
I am not sure I understand exactly what you mean - however, it seems that you are on the right track. Assuming indeed that SFTPMinaClientConnector is a prototype bean all you need to do is initialize a session + SFTP on connect and tear them down on close. From what you describe though, it seems

[ANNOUNCE] Apache SSHD 2.3.0 released

2019-07-20 Thread Lyor Goldstein
The Apache SSHD project is pleased to announce the release of SSHD 2.2.0 version. Apache SSHD is a 100% pure java library to support the SSH protocols on both the client and server side. This library can leverage Apache MINA and also Netty - scalable and high performance asynchronous I/O

Q: release SSHD 2.3.0 ?

2019-06-30 Thread Lyor Goldstein
Hi all, I believe we have reached a respectable number of bug fixes, features and improvements to warrant a new release of SSHD. Therefore, if no one objects, I would like to ask Guillaume to cut a release and publish a request for a vote. Thanks to all who posted bugs, feature requests and code

RE: channel question

2019-06-16 Thread Lyor Goldstein
>> By the way, in addition to the previous question. Can I increase the session idle timeout ? Currently 10m, let's say I want it to be 30m ? Easily: see FactoryManager#IDLE_TIMEOUT configuration parameter.Can be done globally - by setting it on the SSH client/server or even per specific

RE: channel request

2019-06-16 Thread Lyor Goldstein
>> I took this code https://github.com/oVirt/ovirt-engine/blob/master/backend/manager/modules/uutils/src/main/java/org/ovirt/engine/core/uutils/ssh/SSHClient.java that is using the sshd The code you mention runs a single (!) command and then exits. I believe your original question was about

Is Apache MINA SSHD's implementation FIPS compliant?

2019-07-06 Thread Lyor Goldstein
Is Apache MINA SSHD's implementation FIPS compliant? That is, can MINA SSHD be configured to use a FIPS-compliant cryptographic engine (like openssl), does it clear memory at the appropriate times, etc.? I do not believe SSHD is FIPS compliant - while it can be configured to use any security

Re: [RESULT] [VOTE] Release Apache Mina SSHD 2.4.0

2020-01-27 Thread Lyor Goldstein
>> I'm thus closing the vote with 3 +1s and no other votes and will publish the release and update the web site asap. Great - let me know if you want me to publish an announcement or you will do it. Thanks, Lyor

[ANNOUNCE] Apache SSHD 2.4.0 released

2020-02-02 Thread Lyor Goldstein
The Apache SSHD project is pleased to announce the release of SSHD 2.1.0 version. Apache SSHD is a 100% pure java library to support the SSH protocols on both the client and server side. This library can leverage Apache MINA and also Netty - scalable and high performance asynchronous IO

Q: Release SSHD 2.4.0 ?

2020-01-09 Thread Lyor Goldstein
Hi, I believe enough time has passed since we released version 2.3.0 and enough new features and/or bug fixes have been accumulated since to warrant the release of a new version. I would like to ask Guillaume to cut a new version and initiate a vote on it in the upcoming week. Thanks.

Re:[VOTE] Release Apache Mina SSHD 2.4.0

2020-01-18 Thread Lyor Goldstein
Thanks Guillaume... +1 I've staged a release candidate: * Repo: https://repository.apache.org/content/repositories/orgapachemina-1047 * Distributions: https://repository.apache.org/content/repositories/orgapachemina-1047/org/apache/sshd/apache-sshd/2.4.0/ * Git Tag:

Re: SSHD 2.4.0

2020-01-16 Thread Lyor Goldstein
>> Sorry for the late reply. >> I did start the release process 2 days ago but hit the following problem. >> Any idea ? I will look into it and let you know shortly - I do have some ideas - basically either try to see if there is a more recent version of the javadoc plugin or

Re: SSHD-2.4.0

2020-01-17 Thread Lyor Goldstein
I have downgraded the plexus.archiver.version back to 4.1.0 and now I believe it works (have not committed or pushed to master). Please check it, and if it works make the necessary commit in the master branch.

Re: SSHD-2.4.0 ?

2020-01-16 Thread Lyor Goldstein
I have looked and there is no upgrade for javadoc plugin. A quick look at the root pom.xml commit history shows (commit 794ebd83f931c15c4343480cc393c5f2cc486416) previous -3.4.0 -4.1.0 upgraded +3.5.0 +4.2.1 I suggest you try the older combination and see if it

Re: SSHD 2.4.0

2020-01-17 Thread Lyor Goldstein
Great - then we can proceed Yes, it seems to fix the issue. Le ven. 17 janv. 2020 à 09:04, Lyor Goldstein a écrit : > I have downgraded the plexus.archiver.version back to 4.1.0 and now I > believe it works (have not committed or pushed to master). Please check it, > and if it w

Re: SSHD 2.4.0

2020-01-17 Thread Lyor Goldstein
>> Some of the tests do consistently fail on my laptop during the release process Strange but not surprising - the MINA and NETTY tests do have inconsistent intermittent failures . Usually if I run `mvn -rf :sshd-mina` (or whatever failed) a few times they succeed. Note that it can happen

Re: Need Help on SSH with External Proxy

2020-03-11 Thread Lyor Goldstein
>> unfortunately our servers are staying in corporate network which desnt have access to outside sftp server and we wanted to use proxy over to transfer the file. >> Could you please help us with any java sample on sshd connection over proxy for sftp or any documentation to use proxy would be

Re: Autoformat source code issue

2020-04-20 Thread Lyor Goldstein
>> https://stackoverflow.com/questions/21822650/disable-git-eol-conversions >> You will probably have to checkout the repo again. Thx - I'll give it a try...

Re: Autoformat source code issue

2020-04-20 Thread Lyor Goldstein
>> Maven auto format might be converting it back to LF then GIT gets confused? Maybe just disable the conversion to CRLF? How do I do that ?

Re: Autoformat source code issue

2020-04-20 Thread Lyor Goldstein
>> >> https://stackoverflow.com/questions/21822650/disable-git-eol-conversions >> >> You will probably have to checkout the repo again. >> Thx - I'll give it a try... No good - tried all sort of combinations for .gitconfig and .gitattributes but none worked quite frustrating - makes no

Re: [SSHD] Autoformat code

2020-04-19 Thread Lyor Goldstein
>> Unless there's a strong objection, i'll soon commit the changes in I have no strong objection, but I am a bit confused why this is better than checkstyle. Please bear in mind that checkstyle is not only about indentations but also imposes what are currently considered good practices (e.g.,

Re: Autoformat source code issue

2020-04-21 Thread Lyor Goldstein
>> When working on an existing repo and modifying the .gitattributes, you may need to use the --renormalize option as indicated in https://help.github.com/en/github/using-git/configuring-git-to-handle-line-endings#refreshing-a-repository-after-changing-line-endings to fix the line endings. >>

Re: Autoformat source code issue

2020-04-20 Thread Lyor Goldstein
>> I thought GIT does this automatically on Windows. Not entirely - there are some core settings that control it, but it is not clear how they affect the behavior. My current setup in .gitconfig is shown below: [core] autocrlf = input filemode = false I have been using it so far

Re: [mina-sshd] 01/02: [SSHD-660] Add support for serer side openssh host certkeys

2020-04-20 Thread Lyor Goldstein
>> I think your forgot to commit the changes to a few files: KeyUtils, KeyPairProvider I don't think so - I have used the cloned repository commits rather that the PR + the code compiles and passes all tests.

Autoformat source code issue

2020-04-20 Thread Lyor Goldstein
I have just fetched the latest master branch and built it on my Windows machine and am getting as if all files have been changed - the change has to do with LF -> CRLF change in all files. How do we prevent this from happening? Personally I prefer LF, but let's make sure that building on Linux or

Re: Autoformat source code issue

2020-04-21 Thread Lyor Goldstein
>> I can still see mixed lf / crlf in the BCrypt.java file, so I'll push another commit to get rid of those. I saw the same and tried to get rid of them - no success either >> Could you try with https://github.com/gnodet/mina-sshd/tree/SSHD-978 and see if it's stable for you Will do - but if

Re: Autoformat source code issue

2020-04-21 Thread Lyor Goldstein
>> >> Could you try with https://github.com/gnodet/mina-sshd/tree/SSHD-978 and see if it's stable for you Works for me - except BCrypt.java seems to still require CRLF changes somehow I guess it will keep doing that every time we "ping pong" commits for it. I therefore think since it is the

Re: SSHD Mina: Help to fetch public key from host

2020-05-17 Thread Lyor Goldstein
>> I have one requirement where I have to fetch public key from given remote host and port, Can you please help me for that, Please point me for any document, code snippet. There is class that I believe already does this: see SshKeyScanMain

Re: SCP commands redirect to SFTP subsystem

2020-05-22 Thread Lyor Goldstein
>> Now our requirement is once we use SCP from this filezila, winscp,putty then also we need to call same class and same method as above for SFTP. Why would you want to do that ? SSHD supports SCP no need to go through SFTP... SshServer server = SshServer.setupDefaultServer(); ...more

Re: Help on permissions on SCP and SFTP operations

2020-10-17 Thread Lyor Goldstein
>> The use case is beforeany file operations I need to check whether the user in session is having permissions to carry on the operations, This involves registering your own SftpFileSystemAccessor via: SftpSubsystemFactory factory = new SftpSubsystemFactory.Builder()

Re: SSHD Custom ShellFactory

2020-10-28 Thread Lyor Goldstein
>> But now the issue is how do I get the ECHO to work! When I type my command, I need to see what I type, as soon as I type a character, just like in any normal terminal. I understand how the ProcessShell works, as the process has Input, Output and Error (which is used as Echo stream) streams,

Re: SSHD Custom ShellFactory

2020-10-28 Thread Lyor Goldstein
>> I found this project called JLine, and help can be provided there for SSHD and console/terminals? See https://issues.apache.org/jira/browse/SSHD-1029 - turns out it's not that simple even with JLine

Re: [VOTE] Release Apache Mina SSHD 2.5.1

2020-06-26 Thread Lyor Goldstein
+1 >> This release is a bug fix release for SSHD-1022 .

Re: Release 2.5.1 patch due to SSHD-1022 ?

2020-06-26 Thread Lyor Goldstein
>> A release sounds good to me. I can start the release process now. Can you wait 2-3 hours ? I would like to add some log messages to Nio2Session that might help diagnose read/write errors like the one mentioned in SSHD-1020

Re: Release 2.5.1 patch due to SSHD-1022 ?

2020-06-26 Thread Lyor Goldstein
>> Sorry, I just saw your message, the release has been uploaded already No problem - we'll include it in the next release then...

Re: [VOTE] Release Apache Mina SSHD 2.5.0

2020-06-16 Thread Lyor Goldstein
+1 >> I've staged a release candidate: * Repo: https://repository.apache.org/content/repositories/orgapachemina-1049 * Distributions: https://repository.apache.org/content/repositories/orgapachemina-1049/org/apache/sshd/apache-sshd/2.5.0/ * Git Tag:

Re: [DISCUSS] Release SSHD 2.5.0 ?

2020-06-04 Thread Lyor Goldstein
>> A bunch of new features / enhancements have been fixed in master since the last release a few months ago (end of january), so I think we should get 2.5.0 out. I am 100% in favor - as a matter of fact I was considering suggesting it myself soon...

Re: [DISCUSS] Release SSHD 2.5.0 ?

2020-06-09 Thread Lyor Goldstein
>> what's the expected timeframe to release 2.5.0? Is it a matter of days or weeks? Hopefully days (at least for me) - Guillaume, can you weigh in your opinion on this ?

Re: [DISCUSS] Release SSHD 2.5.0 ?

2020-06-11 Thread Lyor Goldstein
>> Days sounds good to me. >> I can actually start the process today / tomorrow to get it out next week if that's ok for everyone. Fine by me...

Re: [VOTE] Release Apache Mina SSHD 2.6.0

2020-12-27 Thread Lyor Goldstein
>> Yes sorry, I was completely offline last week, but I'll do it next week. No hurry - just wanted to make sure we are on track

Re: Apache MINA SSHD 2.6.0 release date?

2020-12-03 Thread Lyor Goldstein
>> Do you have any planned release date for a version supporting this? As a matter of fact I intend to propose this in the next few days (just tying up some loose ends,,,)

Propose to release SSHD 2.6.0

2020-12-03 Thread Lyor Goldstein
Hi, I believe we have accumulated a respectable amount of bug fixes and new features (some of them eagerly awaited). If there are no known pending urgent/important issues I would like to recommend that we start the process of releasing 2.6.0 - especially since we also plan to engage in a major

Re: [VOTE] Release Apache Mina SSHD 2.6.0

2020-12-08 Thread Lyor Goldstein
+1

Re: [VOTE] Release Apache Mina SSHD 2.6.0

2020-12-24 Thread Lyor Goldstein
Any progress on the release ? Did we achieve the necessary votes count ? (seems to me we got at least 4 +1's...)

Re: SocketTimeoutException when copying files using ScpClient

2020-12-21 Thread Lyor Goldstein
>> I understand that I need to increase the WAIT_FOR_SPACE_TIMEOUT = " channel-output-wait-for-space-timeout" But I am not exactly sure how to pass these config values when creating the scpClient. There are 2 options: * Globally SshClient client = SshClient.setupDefaultClient();

Q: replace/update the built-in moduli file ?

2020-10-30 Thread Lyor Goldstein
In view of https://security.stackexchange.com/questions/41941/consequences-of-tampered-etc-ssh-moduli and the fact that our current built-in moduli are from 2014 (according to their timestamp) perhaps we should generate some new ones...

Re: SSHD Custom ShellFactory

2020-10-29 Thread Lyor Goldstein
>> Looks like I was able to get it to work JLine following the example outlined here: https://www.google.com/amp/s/blog.javaforge.net/post/68495259926/embedded-ssh-daemon-and-remote-shell-for-java-applicatio/amp <

Re: SSHD Custom ShellFactory

2020-10-27 Thread Lyor Goldstein
>> I would really appreciate someone who has experience with this to give me some guidance. I have searched the web and cannot seem to find anything. >> Hope someone can help… This is an oldie but goodie - we have made several attempts in the past (see SSHD-897 SSHD-1029) but we always come up

SSHD 2.7 release ?

2021-04-27 Thread Lyor Goldstein
Hi, I believe we have accumulated a respectable amount of bug fixes and features to justify the release of a (long awaited) new version. If there is no pending major bugfix or feature I would like to ask Guillaume to cut a version and put it to a vote. Thanks, Lyor G.

Re: Q: Release SSHD 2.7.1 ?

2021-12-03 Thread Lyor Goldstein
There will be no 2.7.1 - it was just a "code" for the next release which is 2.8.0 Hi, maybe a dumb question, do we need 2.7.1 when 2.8.0 release is going to be released soon? Or would it be better to use 2.7.1 in production and rather wait with 2.8.0

Q: Release SSHD 2.7.1 ?

2021-11-27 Thread Lyor Goldstein
Hi guys, I believe we have accumulated a respectable number of bug fixes and features to warrant a release of a new version. If there is no objection, I would like to ask Guillaume to cut a new release and initiate a vote for it. Thanks

Re: [VOTE] Mina SSHD 2.8.0

2021-12-02 Thread Lyor Goldstein
+1 I've staged a release candidate at https://repository.apache.org/content/repositories/orgapachemina-1061 GIt Tag: https://github.com/apache/mina-sshd/releases/tag/sshd-2.8.0 Issues solved:

Re: Q: Release SSHD 2.7.1 ?

2021-12-02 Thread Lyor Goldstein
Sorry, for some reason I missed it - I vote +1 >> The vote was started a few days ago: http://mail-archives.apache.org/mod_mbox/mina-dev/202111.mbox/%3cCAA66TppR9cKQtWiYzmPm5hCPG=rhwugsnfhe0-jk0geryuw...@mail.gmail.com%3e

Q: Release SSHD 2.7.1 ?

2021-12-01 Thread Lyor Goldstein
Hi guys, I have not heard from you on this issue for the past week - can we proceed with the release or are there any issues we need to address? Thanks >> Hi guys, >> I believe we have accumulated a respectable number of bug fixes and features to warrant a release of a new version. If there

Re: [VOTE] Release Apache Mina SSHD 2.9.1

2022-08-30 Thread Lyor Goldstein
+1

[jira] [Comment Edited] (SSHD-941) mina ssh client times out connecting with IOS 15.2

2019-09-28 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16940243#comment-16940243 ] Lyor Goldstein edited comment on SSHD-941 at 9/29/19 5:27 AM: -- {quote

[jira] [Commented] (SSHD-941) mina ssh client times out connecting with IOS 15.2

2019-09-28 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16940243#comment-16940243 ] Lyor Goldstein commented on SSHD-941: - {quote} With dhg keysize workaround, connection with IOS only

[jira] [Commented] (SSHD-941) mina ssh client times out connecting with IOS 15.2

2019-09-28 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16940246#comment-16940246 ] Lyor Goldstein commented on SSHD-941: - {code} mina ssh needs to receive "server version s

[jira] [Commented] (SSHD-946) Supporting 'encrypt-then-MAC' mode

2019-10-01 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-946?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16942079#comment-16942079 ] Lyor Goldstein commented on SSHD-946: - The current implementation adheres to existing SSH standards

[jira] [Updated] (SSHD-946) Supporting 'encrypt-then-MAC' mode

2019-10-01 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-946?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lyor Goldstein updated SSHD-946: Summary: Supporting 'encrypt-then-MAC' mode (was: Supporting 'encrypt-than-MAC' mode) > Support

[jira] [Updated] (SSHD-946) Supporting 'encrypt-than-MAC' mode

2019-10-01 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-946?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Lyor Goldstein updated SSHD-946: Issue Type: New Feature (was: Bug) > Supporting 'encrypt-than-MAC' m

[jira] [Commented] (SSHD-941) mina ssh client times out connecting with IOS 15.2

2019-09-26 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16938678#comment-16938678 ] Lyor Goldstein commented on SSHD-941: - Don't really know - depends on how many other fixes and/or new

[jira] [Comment Edited] (SSHD-941) mina ssh client times out connecting with IOS 15.2

2019-09-26 Thread Lyor Goldstein (Jira)
[ https://issues.apache.org/jira/browse/SSHD-941?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16938678#comment-16938678 ] Lyor Goldstein edited comment on SSHD-941 at 9/26/19 2:34 PM: -- Don't really

<    1   2   3   4   5   6   7   8   9   10   >