From 21b95ba7c015e3edc5bd7c9a96f9168e69fdd5c7 Mon Sep 17 00:00:00 2001 From: Tomasz Tylenda Date: Fri, 11 Apr 2025 16:53:15 +0200 Subject: [PATCH] Modify rule S5332: Update link to JSch library to a replacement --- rules/S5332/java/rule.adoc | 2 +- rules/S5332/kotlin/rule.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/S5332/java/rule.adoc b/rules/S5332/java/rule.adoc index 67a6b1a2ffa..1afecd462fa 100644 --- a/rules/S5332/java/rule.adoc +++ b/rules/S5332/java/rule.adoc @@ -37,7 +37,7 @@ webView.getSettings().setMixedContentMode(MIXED_CONTENT_ALWAYS_ALLOW); // Sensit == Compliant Solution -Use instead these clients from https://commons.apache.org/proper/commons-net/[Apache commons net] and http://www.jcraft.com/jsch/[JSch/ssh] library: +Use instead these clients from https://commons.apache.org/proper/commons-net/[Apache commons net] and https://github.com/mwiede/jsch[JSch] library: [source,java] ---- diff --git a/rules/S5332/kotlin/rule.adoc b/rules/S5332/kotlin/rule.adoc index 6dd11969015..38eb9b7469e 100644 --- a/rules/S5332/kotlin/rule.adoc +++ b/rules/S5332/kotlin/rule.adoc @@ -37,7 +37,7 @@ webView.getSettings().setMixedContentMode(MIXED_CONTENT_ALWAYS_ALLOW) // Sensiti == Compliant Solution -Use instead these clients from https://commons.apache.org/proper/commons-net/[Apache commons net] and http://www.jcraft.com/jsch/[JSch/ssh] library: +Use instead these clients from https://commons.apache.org/proper/commons-net/[Apache commons net] and https://github.com/mwiede/jsch[JSch] library: [source,kotlin] ----