Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jenkinsci/trilead-ssh2
Patched trilead-ssh2 used in Jenkins
https://github.com/jenkinsci/trilead-ssh2
Last synced: 10 days ago
JSON representation
Patched trilead-ssh2 used in Jenkins
- Host: GitHub
- URL: https://github.com/jenkinsci/trilead-ssh2
- Owner: jenkinsci
- License: other
- Created: 2010-02-03T01:53:45.000Z (almost 15 years ago)
- Default Branch: main
- Last Pushed: 2024-04-08T10:59:09.000Z (7 months ago)
- Last Synced: 2024-04-10T13:07:11.258Z (7 months ago)
- Language: Java
- Homepage: http://jenkins-ci.org/
- Size: 979 KB
- Stars: 198
- Watchers: 122
- Forks: 110
- Open Issues: 2
-
Metadata Files:
- Readme: README.txt
- Changelog: HISTORY.txt
- License: LICENSE.txt
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Trilead SSH-2 for Java - build 212
==================================http://www.trilead.com
Trilead SSH-2 for Java is a library which implements the SSH-2 protocol in pure Java
(minimum required JRE: 1.4.2). It allows one to connect to SSH servers from within
Java programs. It supports SSH sessions (remote command execution and shell access),
local and remote port forwarding, local stream forwarding, X11 forwarding, SCP and SFTP.
There are no dependencies on any JCE provider, as all crypto functionality is included.This distribution contains the source code, examples, javadoc and the FAQ.
It also includes a pre-compiled jar version of the library which is ready to use.- Please read the included LICENCE.txt
- Latest changes can be found in HISTORY.txtThe latest version of the FAQ is available on the website.
Please feel free to contact us. We welcome feedback of any kind!
Contact: [email protected] or go to the public forum at http://www.trilead.comZurich, March 2008
## Algorithm filters
The algorithm filters can be used to restrict the algorithms that are used by the library.
The filters will remove the algorithms you specify from the SSH algorithms negotiation between client and server.
The library supports the following algorithm filters:
* Kex (Key Exchange) algorithm filter
* Host Key algorithm filter
* Encryption algorithm filter
* MAC algorithm filterTo filter algorithms enable the filters using the following System properties:
* com.trilead.ssh2.jenkins.FilterKexAlgorithms.enabled (default: true)
* com.trilead.ssh2.jenkins.FilterHostKeyAlgorithms.enabled (default: true)
* com.trilead.ssh2.jenkins.FilterMacAlgorithms.enabled (default: true)
* com.trilead.ssh2.jenkins.FilterEncrytionAlgorithms.enabled (default: true)The algorithms are specified as a comma separated list of algorithm names.
To configure the algorithm filters, use the following System properties:* com.trilead.ssh2.jenkins.FilterKexAlgorithms.algorithms
* com.trilead.ssh2.jenkins.FilterHostKeyAlgorithms.algorithms
* com.trilead.ssh2.jenkins.FilterMacAlgorithms.algorithms
* com.trilead.ssh2.jenkins.FilterEncrytionAlgorithms.algorithmsExample
```bash
java -Dcom.trilead.ssh2.jenkins.FilterKexAlgorithms.enabled=true \
-Dcom.trilead.ssh2.jenkins.FilterKexAlgorithms.algorithms=diffie-hellman-group-exchange-sha256 \
-jar jenkins.war
```To check the algorithms filtered by the library, check the `Filter*` classes at the package [`com.trilead.ssh2.jenkins`](src/com/trilead/ssh2/jenkins).