Skip to content

Commit

Permalink
added terrapin ssh scanning support
Browse files Browse the repository at this point in the history
Signed-off-by: Rahul Jadhav <nyrahul@gmail.com>
  • Loading branch information
nyrahul committed Dec 21, 2023
1 parent f1fe7ef commit 3db76b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Our primary reason to work on this tool was to handle 5G Security Control checks
kubectl apply -f https://raw.githubusercontent.com/kubearmor/k8tls/main/k8s/job.yaml
```

2. Get the report
2. Get the report (once the job is Completed)
```
kubectl logs -n k8tls $(kubectl get pod -n k8tls -l job-name=k8tls -o name) -f
```
Expand Down Expand Up @@ -64,6 +64,8 @@ Summary:

```
docker run --rm -v $PWD/config:/home/k8tls/data kubearmor/k8tls --infile data/addr.list --csv data/out.csv
```
```
| Name | Address | Status | Version | Ciphersuite | Hash | Signature | Verification |
| ------------------------------ | ----------------------------- | -------- | ------- | --------------------------- | ------ | --------- | -------------------------------------------- |
Expand Down
2 changes: 1 addition & 1 deletion src/findings_terrapin
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
TPJSON=/tmp/tpin.json
terrapin_scan()
{
TPIN=/home/rahul/go/bin/Terrapin-Scanner
TPIN=Terrapin_Scanner
timeout 5s $TPIN --connect $SVC_Address --json > $TPJSON
[[ $? -ne 0 ]] && status="ERROR" && return
for((i=0;;i++)); do
Expand Down

0 comments on commit 3db76b3

Please sign in to comment.