RUB-NDS/Terrapin-Scanner
Fork: 64 Star: 936 (更新于 2024-10-23 22:26:32)
license: Apache-2.0
Language: Go .
This repository contains a simple vulnerability scanner for the Terrapin attack present in the paper "Terrapin Attack: Breaking SSH Channel Integrity By Sequence Number Manipulation".
最后发布版本: v1.1.3 ( 2024-01-18 21:11:11)
Terrapin Vulnerability Scanner
The Terrapin Vulnerability Scanner is a small utility program written in Go, which can be used to determine the vulnerability of an SSH client or server against the Terrapin Attack. The vulnerability scanner requires a single connection with the peer to gather all supported algorithms. However, it does not perform a fully fledged SSH key exchange, will never attempt authentication on a server, and does not perform the attack in practice. Instead, vulnerability is determined by checking the supported algorithms and support for known countermeasures (strict key exchange). This may falsely claim vulnerability in case the peer supports countermeasures unknown to this tool.
Running
For convenience, we are providing pre-compiled binaries for all major desktop platforms. These can be found on the Release page. We have also provided a Docker image that supports most of the major architectures. This image can be run as:
docker run --rm -it ghcr.io/rub-nds/terrapin-scanner <args>
[!IMPORTANT]
Note that when running the Terrapin Vulnerability Scanner inside a Docker container, the tool will bind to the container's localhost when specifying--listen
with port only. To avoid connectivity issues, add0.0.0.0
as its bind address and map the container's port to the host via Docker's-p
argument.The following command will make the Terrapin Vulnerability Scanner available at port 2222 on the host system's localhost:
docker run --rm -it -p localhost:2222:2222 ghcr.io/rub-nds/terrapin-scanner --listen 0.0.0.0:2222
Building
However, we understand that you might prefer building tools that connect to your SSH server yourself. To do this, ensure that you have at least Go v1.18 installed. To compile and install the Terrapin Vulnerability Scanner Go package, run the command below.
go install github.com/RUB-NDS/Terrapin-Scanner@latest
This will download, compile, and install the Go package for your local system. The compiled binary will become available at $GOBIN/Terrapin-Scanner
. If the GOBIN
environment variable is not set, Go will default to using $GOPATH/bin
or $HOME/go/bin
, depending on whether the $GOPATH
environment variable is set.
You can also build the Docker image yourself by running the commands below.
git clone https://github.com/RUB-NDS/Terrapin-Scanner.git
docker build -t terrapin-scanner Terrapin-Scanner
Usage
# Scan the SSH server available at localhost port 2222
./Terrapin-Scanner --connect localhost:2222
# If no port is specified, the tool will default to port 22 instead
./Terrapin-Scanner --connect localhost
# To scan an SSH client, specify the listen command instead
# After running the command, you will need to connect with your SSH client to port 2222
./Terrapin-Scanner --listen 0.0.0.0:2222
# When binding to localhost, you can omit the interface address
# The following command will listen for incoming connections on 127.0.0.1:2222
./Terrapin-Scanner --listen 2222
The scanner supports outputting the scan result as json. To do so, provide the --json
flag when calling the scanner. The output is structured as follows:
{
"RemoteAddr": "127.0.0.1:22",
"IsServer": true,
"Banner": "SSH-2.0-OpenSSH_8.9p1 Ubuntu-3ubuntu0.5",
"SupportsChaCha20": true,
"SupportsCbcEtm": false,
"SupportsStrictKex": true,
"Vulnerable": false
}
最近版本更新:(数据更新于 2024-08-28 08:31:26)
2024-01-18 21:11:11 v1.1.3
2024-01-09 23:53:32 v1.1.2
2023-12-23 00:15:21 v1.1.1
2023-12-21 00:59:58 v1.1.0
2023-12-19 20:30:25 v1.0.3
2023-12-18 20:55:59 v1.0.2
2023-12-14 21:56:36 v1.0.1
2023-12-14 19:33:14 v1.0.0
主题(topics):
attack, cryptography, ssh, vulnerability, vulnerability-scanner
RUB-NDS/Terrapin-Scanner同语言 Go最近更新仓库
2024-11-05 08:55:31 XTLS/Xray-core
2024-11-05 00:03:47 SagerNet/sing-box
2024-11-04 20:34:19 Permify/permify
2024-11-04 15:07:27 containerd/containerd
2024-11-03 20:10:56 flipped-aurora/gin-vue-admin
2024-11-03 00:46:25 dolthub/dolt